Struct serde_derive_internals::attr::Variant[][src]

pub struct Variant { /* fields omitted */ }

Represents variant attribute information

Implementations

impl Variant[src]

pub fn from_ast(cx: &Ctxt, variant: &Variant) -> Self[src]

pub fn name(&self) -> &Name[src]

pub fn aliases(&self) -> Vec<String>[src]

pub fn rename_by_rules(&mut self, rules: &RenameAllRules)[src]

pub fn rename_all_rules(&self) -> &RenameAllRules[src]

pub fn ser_bound(&self) -> Option<&[WherePredicate]>[src]

pub fn de_bound(&self) -> Option<&[WherePredicate]>[src]

pub fn skip_deserializing(&self) -> bool[src]

pub fn skip_serializing(&self) -> bool[src]

pub fn other(&self) -> bool[src]

pub fn serialize_with(&self) -> Option<&ExprPath>[src]

pub fn deserialize_with(&self) -> Option<&ExprPath>[src]

Auto Trait Implementations

impl RefUnwindSafe for Variant

impl !Send for Variant

impl !Sync for Variant

impl Unpin for Variant

impl UnwindSafe for Variant

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, 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.