pub struct VecStub<T>(/* private fields */);Expand description
A stub for Vec<T> used in no_std environments.
Trait Implementations§
Source§impl<T> BorrowMut<[T]> for VecStub<T>
impl<T> BorrowMut<[T]> for VecStub<T>
Source§fn borrow_mut(&mut self) -> &mut [T]
fn borrow_mut(&mut self) -> &mut [T]
Mutably borrows from an owned value. Read more
Source§impl<T> Ord for VecStub<T>where
T: Ord,
impl<T> Ord for VecStub<T>where
T: Ord,
Source§impl<T> PartialOrd for VecStub<T>where
T: PartialOrd,
impl<T> PartialOrd for VecStub<T>where
T: PartialOrd,
impl<T> Eq for VecStub<T>where
T: Eq,
Auto Trait Implementations§
impl<T> Freeze for VecStub<T>where
T: Freeze,
impl<T> RefUnwindSafe for VecStub<T>where
T: RefUnwindSafe,
impl<T> Send for VecStub<T>where
T: Send,
impl<T> Sync for VecStub<T>where
T: Sync,
impl<T> Unpin for VecStub<T>where
T: Unpin,
impl<T> UnwindSafe for VecStub<T>where
T: 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