Enum rustdoc_json_types::Type
source · pub enum Type {
Show 13 variants
ResolvedPath(Path),
DynTrait(DynTrait),
Generic(String),
Primitive(String),
FunctionPointer(Box<FunctionPointer>),
Tuple(Vec<Type>),
Slice(Box<Type>),
Array {
type_: Box<Type>,
len: String,
},
ImplTrait(Vec<GenericBound>),
Infer,
RawPointer {
mutable: bool,
type_: Box<Type>,
},
BorrowedRef {
lifetime: Option<String>,
mutable: bool,
type_: Box<Type>,
},
QualifiedPath {
name: String,
args: Box<GenericArgs>,
self_type: Box<Type>,
trait_: Option<Path>,
},
}
Variants§
ResolvedPath(Path)
Structs, enums, and unions
DynTrait(DynTrait)
Generic(String)
Parameterized types
Primitive(String)
Built in numeric (i*, u*, f*) types, bool, and char
FunctionPointer(Box<FunctionPointer>)
extern "ABI" fn
Tuple(Vec<Type>)
(String, u32, Box<usize>)
Slice(Box<Type>)
[u32]
Array
[u32; 15]
ImplTrait(Vec<GenericBound>)
impl TraitA + TraitB + ...
Infer
_
RawPointer
*mut u32
, *u8
, etc.
BorrowedRef
&'a mut String
, &str
, etc.
QualifiedPath
Fields
§
args: Box<GenericArgs>
Associated types like <Type as Trait>::Name
and T::Item
where
T: Iterator
or inherent associated types like Struct::Name
.
Trait Implementations§
source§impl<'de> Deserialize<'de> for Type
impl<'de> Deserialize<'de> for Type
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl PartialEq<Type> for Type
impl PartialEq<Type> for Type
impl Eq for Type
impl StructuralEq for Type
impl StructuralPartialEq for Type
Auto Trait Implementations§
impl RefUnwindSafe for Type
impl Send for Type
impl Sync for Type
impl Unpin for Type
impl UnwindSafe for Type
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
impl<T> DeserializeOwned for Twhere T: for<'de> Deserialize<'de>,
Layout§
Note: Most layout information is completely unstable and may even differ between compilations. The only exception is types with certain repr(...)
attributes. Please see the Rust Reference's “Type Layout” chapter for details on type layout guarantees.
Size: 104 bytes
Size for each variant:
ResolvedPath
: 63 bytesDynTrait
: 55 bytesGeneric
: 31 bytesPrimitive
: 31 bytesFunctionPointer
: 15 bytesTuple
: 31 bytesSlice
: 15 bytesArray
: 39 bytesImplTrait
: 31 bytesInfer
: 0 bytesRawPointer
: 15 bytesBorrowedRef
: 39 bytesQualifiedPath
: 103 bytes