Enum darling::util::Override [] [src]

pub enum Override<T> {
    Inherit,
    Explicit(T),
}

A value which can inherit a default value or have an explicit value specified.

Usage

This type is meant for attributes like default in darling, which can take the following forms:

  • #[darling(default)]
  • #[darling(default="path::to::fn")]

In a struct collecting input for this attribute, that would be written as:

use darling::util::Override;
#[derive(FromField)]
#[darling(attributes(darling))]
pub struct Options {
   default: Option<Override<syn::Path>>,
}

impl Options {
    fn hydrate(self) -> Option<syn::Path> {
        self.default.map(|ov| ov.unwrap_or(syn::parse_path("::Default::default").unwrap()))
    }
}

The word format (with no associated value), would produce Override::Inherit, while a list or value format would produce Override::Explicit.

Variants

Inherit the eventual value from an external source.

Explicitly set the value.

Methods

impl<T> Override<T>
[src]

Converts from Override<T> to Override<&T>.

Produces a new Override, containing a reference into the original, leaving the original in place.

Converts from Override<T> to Override<&mut T>.

Produces a new Override, containing a mutable reference into the original.

Returns true if the override is an Explicit value.

Converts from Override<T> to Option<T>.

Unwraps an override, yielding the content of an Explicit. Otherwise, it returns optb.

Unwraps an override, yielding the content of an Explicit. Otherwise, it calls op.

impl<T> Override<T> where
    T: Default
[src]

Returns the contained value or the default value of T.

Trait Implementations

impl<T> Debug for Override<T> where
    T: Debug
[src]

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

impl<T> Display for Override<T> where
    T: Display
[src]

impl<T> Default for Override<T>
[src]

Returns the "default value" for a type. Read more

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

Performs the conversion.

impl<T> Eq for Override<T> where
    T: Eq
[src]

impl<T> FromMetaItem for Override<T> where
    T: FromMetaItem
[src]

Parses a MetaItem. A bare word will produce Override::Inherit, while any value will be forwarded to T::from_meta_item.

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

Create an instance from a list of nested meta items.

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

Create an instance from a syn::MetaItem by dispatching to the format-appropriate trait function. This generally should not be overridden by implementers. Read more

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

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

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

impl<T> PartialEq<Override<T>> for Override<T> where
    T: PartialEq<T>, 
[src]