pub enum ValArrayInner {
Base(ValArrayBase),
Slice(ValArraySlice),
}
Variants§
Base(ValArrayBase)
Slice(ValArraySlice)
Trait Implementations§
Source§impl Clone for ValArrayInner
impl Clone for ValArrayInner
Source§fn clone(&self) -> ValArrayInner
fn clone(&self) -> ValArrayInner
Returns a duplicate 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 Debug for ValArrayInner
impl Debug for ValArrayInner
Source§impl Poolable for ValArrayInner
impl Poolable for ValArrayInner
Auto Trait Implementations§
impl Freeze for ValArrayInner
impl RefUnwindSafe for ValArrayInner
impl Send for ValArrayInner
impl Sync for ValArrayInner
impl Unpin for ValArrayInner
impl UnwindSafe for ValArrayInner
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