Enum darling::util::Override [−][src]
pub enum Override<T> {
Inherit,
Explicit(T),
}
Expand description
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, FromField};
#[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.
Implementations
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.
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
.
Returns the contained value or the default value of T
.
Trait Implementations
Parses a Meta
. A bare word will produce Override::Inherit
, while
any value will be forwarded to T::from_meta
.
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::Meta
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.
Auto Trait Implementations
impl<T> RefUnwindSafe for Override<T> where
T: RefUnwindSafe,
impl<T> UnwindSafe for Override<T> where
T: UnwindSafe,
Blanket Implementations
Mutably borrows from an owned value. Read more