[][src]Struct preserves::value::value::AnnotatedValue

pub struct AnnotatedValue<N: NestedValue<D>, D: Domain>(pub Annotations<N, D>, pub Value<N, D>);

An possibly-annotated Value, with annotations (themselves possibly-annotated) in order of appearance.

Trait Implementations

impl<N: Clone + NestedValue<D>, D: Clone + Domain> Clone for AnnotatedValue<N, D>[src]

impl<N: NestedValue<D>, D: Domain> Eq for AnnotatedValue<N, D>[src]

impl<N: NestedValue<D>, D: Domain> Hash for AnnotatedValue<N, D>[src]

impl<N: NestedValue<D>, D: Domain> Ord for AnnotatedValue<N, D>[src]

impl<N: NestedValue<D>, D: Domain> PartialEq<AnnotatedValue<N, D>> for AnnotatedValue<N, D>[src]

impl<N: NestedValue<D>, D: Domain> PartialOrd<AnnotatedValue<N, D>> for AnnotatedValue<N, D>[src]

Auto Trait Implementations

impl<N, D> RefUnwindSafe for AnnotatedValue<N, D> where
    D: RefUnwindSafe,
    N: RefUnwindSafe

impl<N, D> Send for AnnotatedValue<N, D> where
    D: Send,
    N: Send

impl<N, D> Sync for AnnotatedValue<N, D> where
    D: Sync,
    N: Sync

impl<N, D> Unpin for AnnotatedValue<N, D> where
    D: Unpin,
    N: Unpin

impl<N, D> UnwindSafe for AnnotatedValue<N, D> where
    D: UnwindSafe,
    N: RefUnwindSafe + UnwindSafe

Blanket Implementations

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

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

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

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

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

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

type Owned = T

The resulting type after obtaining ownership.

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.

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.