Struct darling::util::SpannedValue[][src]

pub struct SpannedValue<T> { /* fields omitted */ }
Expand description

A value and an associated position in source code. The main use case for this is to preserve position information to emit warnings from proc macros. You can use a SpannedValue<T> as a field in any struct that implements or derives any of darling’s core traits.

To access the underlying value, use the struct’s Deref implementation.

Defaulting

This type is meant to be used in conjunction with attribute-extracted options, but the user may not always explicitly set those options in their source code. In this case, using Default::default() will create an instance which points to Span::call_site().

Implementations

impl<T> SpannedValue<T>[src]

pub fn new(value: T, span: Span) -> SpannedValue<T>[src]

pub fn span(&self) -> Span[src]

Get the source code location referenced by this struct.

pub fn map_ref<U>(&self, map_fn: impl FnOnce(&T) -> U) -> SpannedValue<U>[src]

Apply a mapping function to a reference to the spanned value.

Trait Implementations

impl<T> AsRef<T> for SpannedValue<T>[src]

pub fn as_ref(&self) -> &T[src]

Performs the conversion.

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

pub fn clone(&self) -> SpannedValue<T>[src]

Returns a copy of the value. Read more

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

Performs copy-assignment from source. Read more

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

pub fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>[src]

Formats the value using the given formatter. Read more

impl<T> Default for SpannedValue<T> where
    T: Default
[src]

pub fn default() -> SpannedValue<T>[src]

Returns the “default value” for a type. Read more

impl<T> Deref for SpannedValue<T>[src]

type Target = T

The resulting type after dereferencing.

pub fn deref(&self) -> &T[src]

Dereferences the value.

impl<T> DerefMut for SpannedValue<T>[src]

pub fn deref_mut(&mut self) -> &mut T[src]

Mutably dereferences the value.

impl<T> From<T> for SpannedValue<T> where
    T: Spanned
[src]

pub fn from(value: T) -> SpannedValue<T>[src]

Performs the conversion.

impl<T> FromDeriveInput for SpannedValue<T> where
    T: FromDeriveInput
[src]

pub fn from_derive_input(value: &DeriveInput) -> Result<SpannedValue<T>, Error>[src]

Create an instance from syn::DeriveInput, or return an error.

impl<T> FromField for SpannedValue<T> where
    T: FromField
[src]

impl<T> FromGenericParam for SpannedValue<T> where
    T: FromGenericParam
[src]

impl<T> FromGenerics for SpannedValue<T> where
    T: FromGenerics
[src]

impl<T> FromMeta for SpannedValue<T> where
    T: FromMeta
[src]

pub fn from_meta(value: &Meta) -> Result<SpannedValue<T>, Error>[src]

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

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<T> FromTypeParam for SpannedValue<T> where
    T: FromTypeParam
[src]

impl<T> FromVariant for SpannedValue<T> where
    T: FromVariant
[src]

pub fn from_variant(value: &Variant) -> Result<SpannedValue<T>, Error>[src]

Create an instance from syn::Variant, or return an error.

impl<T> Spanned for SpannedValue<T>[src]

pub fn span(&self) -> Span[src]

Returns a Span covering the complete contents of this syntax tree node, or Span::call_site() if this node is empty. Read more

impl<T> Copy for SpannedValue<T> where
    T: Copy
[src]

Auto Trait Implementations

impl<T> RefUnwindSafe for SpannedValue<T> where
    T: RefUnwindSafe

impl<T> !Send for SpannedValue<T>

impl<T> !Sync for SpannedValue<T>

impl<T> Unpin for SpannedValue<T> where
    T: Unpin

impl<T> UnwindSafe for SpannedValue<T> where
    T: UnwindSafe

Blanket Implementations

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

pub fn type_id(&self) -> TypeId[src]

Gets the TypeId of self. Read more

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

pub fn borrow(&self) -> &T[src]

Immutably borrows from an owned value. Read more

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

pub fn borrow_mut(&mut self) -> &mut T[src]

Mutably borrows from an owned value. Read more

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

pub fn from(t: T) -> T[src]

Performs the conversion.

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

pub fn into(self) -> U[src]

Performs the conversion.

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

type Owned = T

The resulting type after obtaining ownership.

pub fn to_owned(&self) -> T[src]

Creates owned data from borrowed data, usually by cloning. Read more

pub fn clone_into(&self, target: &mut T)[src]

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

Uses borrowed data to replace owned data, usually by cloning. Read more

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.

pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]

Performs the conversion.

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.

pub fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]

Performs the conversion.