pub struct TStack<U: Update> { /* private fields */ }
Expand description
A layout based on timely stacks
Trait Implementations§
Source§impl<U: Update> Layout for TStack<U>where
U::Key: Columnation + 'static,
U::Val: Columnation + 'static,
U::Time: Columnation,
U::Diff: Columnation,
impl<U: Update> Layout for TStack<U>where
U::Key: Columnation + 'static,
U::Val: Columnation + 'static,
U::Time: Columnation,
U::Diff: Columnation,
Source§type KeyContainer = TimelyStack<<U as Update>::Key>
type KeyContainer = TimelyStack<<U as Update>::Key>
Container for update keys.
Source§type ValContainer = TimelyStack<<U as Update>::Val>
type ValContainer = TimelyStack<<U as Update>::Val>
Container for update vals.
Source§type UpdContainer = TimelyStack<(<U as Update>::Time, <U as Update>::Diff)>
type UpdContainer = TimelyStack<(<U as Update>::Time, <U as Update>::Diff)>
Container for update vals.
Auto Trait Implementations§
impl<U> Freeze for TStack<U>
impl<U> RefUnwindSafe for TStack<U>where
U: RefUnwindSafe,
impl<U> Send for TStack<U>where
U: Send,
impl<U> Sync for TStack<U>where
U: Sync,
impl<U> Unpin for TStack<U>where
U: Unpin,
impl<U> UnwindSafe for TStack<U>where
U: UnwindSafe,
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more