[][src]Struct deltoid::borrow::CowDelta

pub struct CowDelta<'a, B: Deltoid + Clone> { /* fields omitted */ }

Trait Implementations

impl<'a, B: Clone + Deltoid> Clone for CowDelta<'a, B>[src]

impl<'a, B: Debug + Deltoid + Clone> Debug for CowDelta<'a, B>[src]

impl<'de, 'a, B: Deltoid + Clone> Deserialize<'de> for CowDelta<'a, B> where
    B: Deserialize<'de>, 
[src]

impl<'a, B: PartialEq + Deltoid + Clone> PartialEq<CowDelta<'a, B>> for CowDelta<'a, B>[src]

impl<'a, B: Deltoid + Clone> Serialize for CowDelta<'a, B> where
    B: Serialize
[src]

impl<'a, B: Deltoid + Clone> StructuralPartialEq for CowDelta<'a, B>[src]

Auto Trait Implementations

impl<'a, B> RefUnwindSafe for CowDelta<'a, B> where
    B: RefUnwindSafe,
    <B as Deltoid>::Delta: RefUnwindSafe

impl<'a, B> Send for CowDelta<'a, B> where
    B: Sync,
    <B as Deltoid>::Delta: Send

impl<'a, B> Sync for CowDelta<'a, B> where
    B: Sync,
    <B as Deltoid>::Delta: Sync

impl<'a, B> Unpin for CowDelta<'a, B> where
    <B as Deltoid>::Delta: Unpin

impl<'a, B> UnwindSafe for CowDelta<'a, B> where
    B: RefUnwindSafe,
    <B as Deltoid>::Delta: 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> DeserializeOwned for T where
    T: Deserialize<'de>, 
[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.