Struct synstructure::VariantAst
source · [−]pub struct VariantAst<'a> {
pub attrs: &'a [Attribute],
pub ident: &'a Ident,
pub fields: &'a Fields,
pub discriminant: &'a Option<(Eq, Expr)>,
}
Expand description
This type is similar to syn
’s Variant
type, however each of the fields
are references rather than owned. When this is used as the AST for a real
variant, this struct simply borrows the fields of the syn::Variant
,
however this type may also be used as the sole variant for a struct.
Fields
attrs: &'a [Attribute]
ident: &'a Ident
fields: &'a Fields
discriminant: &'a Option<(Eq, Expr)>
Trait Implementations
sourceimpl<'a> Clone for VariantAst<'a>
impl<'a> Clone for VariantAst<'a>
sourcefn clone(&self) -> VariantAst<'a>
fn clone(&self) -> VariantAst<'a>
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl<'a> Debug for VariantAst<'a>
impl<'a> Debug for VariantAst<'a>
sourceimpl<'a> Hash for VariantAst<'a>
impl<'a> Hash for VariantAst<'a>
sourceimpl<'a> PartialEq<VariantAst<'a>> for VariantAst<'a>
impl<'a> PartialEq<VariantAst<'a>> for VariantAst<'a>
sourcefn eq(&self, other: &VariantAst<'a>) -> bool
fn eq(&self, other: &VariantAst<'a>) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &VariantAst<'a>) -> bool
fn ne(&self, other: &VariantAst<'a>) -> bool
This method tests for !=
.
impl<'a> Copy for VariantAst<'a>
impl<'a> Eq for VariantAst<'a>
impl<'a> StructuralEq for VariantAst<'a>
impl<'a> StructuralPartialEq for VariantAst<'a>
Auto Trait Implementations
impl<'a> RefUnwindSafe for VariantAst<'a>
impl<'a> !Send for VariantAst<'a>
impl<'a> !Sync for VariantAst<'a>
impl<'a> Unpin for VariantAst<'a>
impl<'a> UnwindSafe for VariantAst<'a>
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcepub fn to_owned(&self) -> T
pub fn to_owned(&self) -> T
Creates owned data from borrowed data, usually by cloning. Read more
sourcepub fn clone_into(&self, target: &mut T)
pub fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more