[][src]Struct libanu::pristine::Remote

pub struct Remote<T: TxnT> {
    pub remote: T::Remote,
    pub rev: T::Revremote,
    pub states: T::Remotestates,
}

Fields

remote: T::Remoterev: T::Revremotestates: T::Remotestates

Auto Trait Implementations

impl<T> RefUnwindSafe for Remote<T> where
    <T as TxnT>::Remote: RefUnwindSafe,
    <T as TxnT>::Remotestates: RefUnwindSafe,
    <T as TxnT>::Revremote: RefUnwindSafe

impl<T> Send for Remote<T> where
    <T as TxnT>::Remote: Send,
    <T as TxnT>::Remotestates: Send,
    <T as TxnT>::Revremote: Send

impl<T> Sync for Remote<T> where
    <T as TxnT>::Remote: Sync,
    <T as TxnT>::Remotestates: Sync,
    <T as TxnT>::Revremote: Sync

impl<T> Unpin for Remote<T> where
    <T as TxnT>::Remote: Unpin,
    <T as TxnT>::Remotestates: Unpin,
    <T as TxnT>::Revremote: Unpin

impl<T> UnwindSafe for Remote<T> where
    <T as TxnT>::Remote: UnwindSafe,
    <T as TxnT>::Remotestates: UnwindSafe,
    <T as TxnT>::Revremote: 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> Same<T> for T

type Output = T

Should always be Self

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,