[][src]Struct syn::ItemStruct

pub struct ItemStruct {
    pub attrs: Vec<Attribute>,
    pub vis: Visibility,
    pub struct_token: Struct,
    pub ident: Ident,
    pub generics: Generics,
    pub fields: Fields,
    pub semi_token: Option<Semi>,
}

A struct definition: struct Foo<A> { x: A }.

This type is available if Syn is built with the "full" feature.

Fields

attrs: Vec<Attribute>vis: Visibilitystruct_token: Structident: Identgenerics: Genericsfields: Fieldssemi_token: Option<Semi>

Trait Implementations

impl Clone for ItemStruct[src]

impl Debug for ItemStruct[src]

impl Eq for ItemStruct[src]

impl From<ItemStruct> for Item[src]

impl From<ItemStruct> for DeriveInput[src]

impl Hash for ItemStruct[src]

impl Parse for ItemStruct[src]

impl PartialEq<ItemStruct> for ItemStruct[src]

impl StructuralEq for ItemStruct[src]

impl StructuralPartialEq for ItemStruct[src]

impl ToTokens for ItemStruct[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Spanned for T where
    T: Spanned + ?Sized
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.