[][src]Struct libpijul::fs::GraphChildren

pub struct GraphChildren<'txn, 'channel, 'changes, T: TxnT, P: ChangeStore + 'changes> { /* fields omitted */ }

An iterator over the children (i.e. a single level down) of an inode key in the graph.

Constructed using iter_graph_children.

Trait Implementations

impl<'txn, 'channel, 'changes, T: TxnT, P: ChangeStore + 'changes> Iterator for GraphChildren<'txn, 'channel, 'changes, T, P>[src]

type Item = (Position<ChangeId>, InodeMetadata, String)

The type of the elements being iterated over.

Auto Trait Implementations

impl<'txn, 'channel, 'changes, T, P> RefUnwindSafe for GraphChildren<'txn, 'channel, 'changes, T, P> where
    P: RefUnwindSafe,
    T: RefUnwindSafe,
    <T as TxnT>::Changeset: RefUnwindSafe,
    <T as TxnT>::Channelstates: RefUnwindSafe,
    <T as TxnT>::Graph: RefUnwindSafe,
    <T as TxnT>::GraphCursor: RefUnwindSafe,
    <T as TxnT>::Revchangeset: RefUnwindSafe

impl<'txn, 'channel, 'changes, T, P> Send for GraphChildren<'txn, 'channel, 'changes, T, P> where
    P: Sync,
    T: Send + Sync,
    <T as TxnT>::Changeset: Sync,
    <T as TxnT>::Channelstates: Sync,
    <T as TxnT>::Graph: Sync,
    <T as TxnT>::GraphCursor: Send,
    <T as TxnT>::Revchangeset: Sync

impl<'txn, 'channel, 'changes, T, P> Sync for GraphChildren<'txn, 'channel, 'changes, T, P> where
    P: Sync,
    T: Sync,
    <T as TxnT>::Changeset: Sync,
    <T as TxnT>::Channelstates: Sync,
    <T as TxnT>::Graph: Sync,
    <T as TxnT>::GraphCursor: Sync,
    <T as TxnT>::Revchangeset: Sync

impl<'txn, 'channel, 'changes, T, P> Unpin for GraphChildren<'txn, 'channel, 'changes, T, P> where
    T: Unpin,
    <T as TxnT>::GraphCursor: Unpin

impl<'txn, 'channel, 'changes, T, P> UnwindSafe for GraphChildren<'txn, 'channel, 'changes, T, P> where
    P: RefUnwindSafe,
    T: RefUnwindSafe + UnwindSafe,
    <T as TxnT>::Changeset: RefUnwindSafe,
    <T as TxnT>::Channelstates: RefUnwindSafe,
    <T as TxnT>::Graph: RefUnwindSafe,
    <T as TxnT>::GraphCursor: UnwindSafe,
    <T as TxnT>::Revchangeset: RefUnwindSafe

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<I> IntoIterator for I where
    I: Iterator
[src]

type Item = <I as Iterator>::Item

The type of the elements being iterated over.

type IntoIter = I

Which kind of iterator are we turning this into?

impl<I> IteratorRandom for I where
    I: Iterator
[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>,