pub enum RefValues<'a> {
I16(&'a [i16]),
U16(&'a [u16]),
I32(&'a [i32]),
U32(&'a [u32]),
I64(&'a [i64]),
U64(&'a [u64]),
F32(&'a [f32]),
F64(&'a [f64]),
}Expand description
A ref to a slice of numerics wrapped with type information.
Variants§
I16(&'a [i16])
U16(&'a [u16])
I32(&'a [i32])
U32(&'a [u32])
I64(&'a [i64])
U64(&'a [u64])
F32(&'a [f32])
F64(&'a [f64])
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for RefValues<'a>
impl<'a> RefUnwindSafe for RefValues<'a>
impl<'a> Send for RefValues<'a>
impl<'a> Sync for RefValues<'a>
impl<'a> Unpin for RefValues<'a>
impl<'a> UnwindSafe for RefValues<'a>
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