pub enum VectorElem {
I8(i8),
I16(i16),
I32(i32),
I64(i64),
F32(f32),
F64(f64),
}Variants§
Trait Implementations§
Source§impl Clone for VectorElem
impl Clone for VectorElem
Source§fn clone(&self) -> VectorElem
fn clone(&self) -> VectorElem
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for VectorElem
Source§impl Debug for VectorElem
impl Debug for VectorElem
Source§impl PartialEq for VectorElem
impl PartialEq for VectorElem
Source§fn eq(&self, other: &VectorElem) -> bool
fn eq(&self, other: &VectorElem) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for VectorElem
Auto Trait Implementations§
impl Freeze for VectorElem
impl RefUnwindSafe for VectorElem
impl Send for VectorElem
impl Sync for VectorElem
impl Unpin for VectorElem
impl UnsafeUnpin for VectorElem
impl UnwindSafe for VectorElem
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