Struct dynamic_list::DynamicList
source · pub struct DynamicList<F, B: DropValue> { /* private fields */ }Implementations§
source§impl DynamicList<Empty, Empty>
impl DynamicList<Empty, Empty>
source§impl<F, N: Size + DropValue> DynamicList<F, N>
impl<F, N: Size + DropValue> DynamicList<F, N>
source§impl<F: Append, BV, BN: DropValue> DynamicList<F, Node<BV, BN>>
impl<F: Append, BV, BN: DropValue> DynamicList<F, Node<BV, BN>>
pub fn push<V>( self, value: V ) -> DynamicList<F::Output<V>, Node<V, Node<BV, BN>>>where <F as Append>::Output<V>: DropValue,
Trait Implementations§
Auto Trait Implementations§
impl<F, B> RefUnwindSafe for DynamicList<F, B>where B: RefUnwindSafe, F: RefUnwindSafe,
impl<F, B> Send for DynamicList<F, B>where B: Send, F: Send,
impl<F, B> Sync for DynamicList<F, B>where B: Sync, F: Sync,
impl<F, B> Unpin for DynamicList<F, B>where B: Unpin, F: Unpin,
impl<F, B> UnwindSafe for DynamicList<F, B>where B: UnwindSafe, F: 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