Struct syn::TypeReference
source · [−]pub struct TypeReference {
pub and_token: And,
pub lifetime: Option<Lifetime>,
pub mutability: Option<Mut>,
pub elem: Box<Type>,
}
Expand description
A reference type: &'a T
or &'a mut T
.
This type is available only if Syn is built with the "derive"
or
"full"
feature.
Fields
and_token: And
lifetime: Option<Lifetime>
mutability: Option<Mut>
elem: Box<Type>
Trait Implementations
Performs the conversion.
Auto Trait Implementations
impl RefUnwindSafe for TypeReference
impl !Send for TypeReference
impl !Sync for TypeReference
impl Unpin for TypeReference
impl UnwindSafe for TypeReference
Blanket Implementations
Mutably borrows from an owned value. Read more
Returns a Span
covering the complete contents of this syntax tree
node, or Span::call_site()
if this node is empty. Read more