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

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

Trait Implementations

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

impl<'a, B: Core> Debug for CowDelta<'a, B>[src]

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

impl<'a, B: PartialEq + Core> PartialEq<CowDelta<'a, B>> for CowDelta<'a, B> where
    B::Delta: PartialEq
[src]

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

impl<'a, B: Core> StructuralPartialEq for CowDelta<'a, B>[src]

Auto Trait Implementations

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

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

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

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

impl<'a, B> UnwindSafe for CowDelta<'a, B> where
    B: RefUnwindSafe,
    <B as Core>::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: for<'de> 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.