Struct syn::ForeignItemType [−][src]
pub struct ForeignItemType {
pub attrs: Vec<Attribute>,
pub vis: Visibility,
pub type_token: Type,
pub ident: Ident,
pub semi_token: Semi,
}
Expand description
A foreign type in an extern
block: type void
.
This type is available only if Syn is built with the "full"
feature.
Fields
attrs: Vec<Attribute>
vis: Visibility
type_token: Type
ident: Ident
semi_token: Semi
Trait Implementations
Performs the conversion.
Auto Trait Implementations
impl RefUnwindSafe for ForeignItemType
impl !Send for ForeignItemType
impl !Sync for ForeignItemType
impl Unpin for ForeignItemType
impl UnwindSafe for ForeignItemType
Blanket Implementations
Mutably borrows from an owned value. Read more