pub enum VectorType {
Integer8,
Integer16,
Integer32,
Integer64,
Float32,
Float64,
}Variants§
Implementations§
Trait Implementations§
Source§impl Clone for VectorType
impl Clone for VectorType
Source§fn clone(&self) -> VectorType
fn clone(&self) -> VectorType
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 VectorType
Source§impl Debug for VectorType
impl Debug for VectorType
impl Eq for VectorType
Source§impl PartialEq for VectorType
impl PartialEq for VectorType
Source§fn eq(&self, other: &VectorType) -> bool
fn eq(&self, other: &VectorType) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for VectorType
Auto Trait Implementations§
impl Freeze for VectorType
impl RefUnwindSafe for VectorType
impl Send for VectorType
impl Sync for VectorType
impl Unpin for VectorType
impl UnsafeUnpin for VectorType
impl UnwindSafe for VectorType
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