Struct darling::util::Ignored [−][src]
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 Clone for Ignored[src]
impl Copy for Ignored[src]
impl Debug for Ignored[src]
impl Default for Ignored[src]
impl Eq for Ignored[src]
impl FromDeriveInput for Ignored[src]
pub fn from_derive_input(&DeriveInput) -> Result<Ignored, Error>[src]
impl FromField for Ignored[src]
impl FromGenericParam for Ignored[src]
pub fn from_generic_param(&GenericParam) -> Result<Ignored, Error>[src]
impl FromGenerics for Ignored[src]
impl FromMeta for Ignored[src]
pub fn from_meta(&Meta) -> Result<Ignored, Error>[src]
pub fn from_nested_meta(item: &NestedMeta) -> Result<Self, Error>[src]
pub fn from_word() -> Result<Self, Error>[src]
pub fn from_list(items: &[NestedMeta]) -> Result<Self, Error>[src]
pub fn from_value(value: &Lit) -> Result<Self, Error>[src]
pub fn from_char(value: char) -> Result<Self, Error>[src]
pub fn from_string(value: &str) -> Result<Self, Error>[src]
pub fn from_bool(value: bool) -> Result<Self, Error>[src]
impl FromTypeParam for Ignored[src]
impl FromVariant for Ignored[src]
impl Hash for Ignored[src]
pub fn hash<__H>(&self, state: &mut __H) where
__H: Hasher, [src]
__H: Hasher,
pub fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher, 1.3.0[src]
H: Hasher,
impl PartialEq<Ignored> for Ignored[src]
pub fn eq(&self, other: &Ignored) -> bool[src]
#[must_use]pub fn ne(&self, other: &Rhs) -> bool1.0.0[src]
impl StructuralEq for Ignored[src]
impl StructuralPartialEq for Ignored[src]
impl UsesLifetimes for Ignored[src]
pub fn uses_lifetimes(
&self,
_opts: &Options,
&'a HashSet<Lifetime, BuildHasherDefault<FnvHasher>>
) -> HashSet<&'a Lifetime, BuildHasherDefault<FnvHasher>>[src]
&self,
_opts: &Options,
&'a HashSet<Lifetime, BuildHasherDefault<FnvHasher>>
) -> HashSet<&'a Lifetime, BuildHasherDefault<FnvHasher>>
pub fn uses_lifetimes_cloned(
&self,
options: &Options,
lifetimes: &HashSet<Lifetime, BuildHasherDefault<FnvHasher>>
) -> HashSet<Lifetime, BuildHasherDefault<FnvHasher>>[src]
&self,
options: &Options,
lifetimes: &HashSet<Lifetime, BuildHasherDefault<FnvHasher>>
) -> HashSet<Lifetime, BuildHasherDefault<FnvHasher>>
impl UsesTypeParams for Ignored[src]
pub fn uses_type_params(
&self,
_opts: &Options,
&'a HashSet<Ident, BuildHasherDefault<FnvHasher>>
) -> HashSet<&'a Ident, BuildHasherDefault<FnvHasher>>[src]
&self,
_opts: &Options,
&'a HashSet<Ident, BuildHasherDefault<FnvHasher>>
) -> HashSet<&'a Ident, BuildHasherDefault<FnvHasher>>
pub fn uses_type_params_cloned(
&self,
options: &Options,
type_set: &HashSet<Ident, BuildHasherDefault<FnvHasher>>
) -> HashSet<Ident, BuildHasherDefault<FnvHasher>>[src]
&self,
options: &Options,
type_set: &HashSet<Ident, BuildHasherDefault<FnvHasher>>
) -> HashSet<Ident, BuildHasherDefault<FnvHasher>>
Auto Trait Implementations
impl RefUnwindSafe for Ignored
impl Send for Ignored
impl Sync for Ignored
impl Unpin for Ignored
impl UnwindSafe for Ignored
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T[src]
pub fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,