Struct clock_zones::Dbm[][src]

pub struct Dbm<B: Bound, L: Layout<B> = LinearLayout<B>> { /* fields omitted */ }

An implementation of Zone as difference bound matrix.

Uses LinearLayout as the default storage layout.

Trait Implementations

impl<B: Clone + Bound, L: Clone + Layout<B>> Clone for Dbm<B, L>[src]

impl<B: Debug + Bound, L: Debug + Layout<B>> Debug for Dbm<B, L>[src]

impl<B: Eq + Bound, L: Eq + Layout<B>> Eq for Dbm<B, L>[src]

impl<B: Hash + Bound, L: Hash + Layout<B>> Hash for Dbm<B, L>[src]

impl<B: PartialEq + Bound, L: PartialEq + Layout<B>> PartialEq<Dbm<B, L>> for Dbm<B, L>[src]

impl<B: Bound, L: Layout<B>> StructuralEq for Dbm<B, L>[src]

impl<B: Bound, L: Layout<B>> StructuralPartialEq for Dbm<B, L>[src]

impl<B: Bound, L: Layout<B>> Zone<B> for Dbm<B, L>[src]

Auto Trait Implementations

impl<B, L> RefUnwindSafe for Dbm<B, L> where
    B: RefUnwindSafe,
    L: RefUnwindSafe

impl<B, L> Send for Dbm<B, L> where
    B: Send,
    L: Send

impl<B, L> Sync for Dbm<B, L> where
    B: Sync,
    L: Sync

impl<B, L> Unpin for Dbm<B, L> where
    B: Unpin,
    L: Unpin

impl<B, L> UnwindSafe for Dbm<B, L> where
    B: UnwindSafe,
    L: 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.