pub struct PersistentArray<T> { /* private fields */ }
Expand description
永続配列
Implementations§
Trait Implementations§
Source§impl<T: Clone> Clone for PersistentArray<T>
impl<T: Clone> Clone for PersistentArray<T>
Source§fn clone(&self) -> PersistentArray<T>
fn clone(&self) -> PersistentArray<T>
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl<T: Clone> From<&PersistentArray<T>> for Vec<T>
impl<T: Clone> From<&PersistentArray<T>> for Vec<T>
Source§fn from(from: &PersistentArray<T>) -> Vec<T>
fn from(from: &PersistentArray<T>) -> Vec<T>
Converts to this type from the input type.
Auto Trait Implementations§
impl<T> Freeze for PersistentArray<T>
impl<T> RefUnwindSafe for PersistentArray<T>where
T: RefUnwindSafe,
impl<T> !Send for PersistentArray<T>
impl<T> !Sync for PersistentArray<T>
impl<T> Unpin for PersistentArray<T>
impl<T> UnwindSafe for PersistentArray<T>where
T: RefUnwindSafe,
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