[][src]Struct darling::util::Ignored

pub struct Ignored;

An efficient way of discarding data from a syntax element.

All syntax elements will be successfully read into the Ignored struct, with all properties discarded.

Trait Implementations

impl UsesLifetimes for Ignored[src]

fn uses_lifetimes_cloned(
    &self,
    options: &Options,
    lifetimes: &HashSet<Lifetime, BuildHasherDefault<FnvHasher>>
) -> HashSet<Lifetime, BuildHasherDefault<FnvHasher>>
[src]

Find all used lifetimes, then clone them and return that set.

impl Copy for Ignored[src]

impl FromGenerics for Ignored[src]

impl FromDeriveInput for Ignored[src]

impl FromMeta for Ignored[src]

fn from_nested_meta(item: &NestedMeta) -> Result<Self, Error>[src]

fn from_word() -> Result<Self, Error>[src]

Create an instance from the presence of the word in the attribute with no additional options specified. Read more

fn from_list(items: &[NestedMeta]) -> Result<Self, Error>[src]

Create an instance from a list of nested meta items.

fn from_value(value: &Lit) -> Result<Self, Error>[src]

Create an instance from a literal value of either foo = "bar" or foo("bar"). This dispatches to the appropriate method based on the type of literal encountered, and generally should not be overridden by implementers. Read more

fn from_char(value: char) -> Result<Self, Error>[src]

Create an instance from a char literal in a value position.

fn from_string(value: &str) -> Result<Self, Error>[src]

Create an instance from a string literal in a value position.

fn from_bool(value: bool) -> Result<Self, Error>[src]

Create an instance from a bool literal in a value position.

impl Default for Ignored[src]

impl FromGenericParam for Ignored[src]

impl Hash for Ignored[src]

fn hash_slice<H>(data: &[Self], state: &mut H) where
    H: Hasher
1.3.0
[src]

Feeds a slice of this type into the given [Hasher]. Read more

impl PartialEq<Ignored> for Ignored[src]

#[must_use]
fn ne(&self, other: &Rhs) -> bool
1.0.0
[src]

This method tests for !=.

impl FromField for Ignored[src]

impl Clone for Ignored[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl FromVariant for Ignored[src]

impl Debug for Ignored[src]

impl Eq for Ignored[src]

impl UsesTypeParams for Ignored[src]

fn uses_type_params_cloned(
    &self,
    options: &Options,
    type_set: &HashSet<Ident, BuildHasherDefault<FnvHasher>>
) -> HashSet<Ident, BuildHasherDefault<FnvHasher>>
[src]

Find all type params using uses_type_params, then clone the found values and return the set.

impl FromTypeParam for Ignored[src]

Auto Trait Implementations

impl Send for Ignored

impl Sync for Ignored

Blanket Implementations

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

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

type Owned = T

impl<T> From for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

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

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

The type returned in the event of a conversion error.

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