[][src]Struct libpijul::pristine::channel_dump::ChannelFromDump

pub struct ChannelFromDump<'a, T: MutTxnT> {
    pub alive: HashSet<ChangeId>,
    // some fields omitted
}

Fields

alive: HashSet<ChangeId>

Implementations

impl<'a, T: MutTxnT> ChannelFromDump<'a, T>[src]

pub fn new(txn: &'a mut T, channel: ChannelRef<T>) -> Self[src]

pub fn read(&mut self, bytes: &[u8]) -> Result<bool, Error>[src]

pub fn edges(&self) -> &[(Vertex<ChangeId>, Edge)][src]

Auto Trait Implementations

impl<'a, T> !RefUnwindSafe for ChannelFromDump<'a, T>

impl<'a, T> !Send for ChannelFromDump<'a, T>

impl<'a, T> !Sync for ChannelFromDump<'a, T>

impl<'a, T> Unpin for ChannelFromDump<'a, T>

impl<'a, T> !UnwindSafe for ChannelFromDump<'a, T>

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>,