pub enum VertexValueType {
Show 15 variants
None,
String,
Boolean,
Integer8Bit,
Integer16Bit,
Integer32Bit,
Integer64Bit,
Integer128Bit,
UnsignedInteger8Bit,
UnsignedInteger16Bit,
UnsignedInteger32Bit,
UnsignedInteger64Bit,
UnsignedInteger128Bit,
FloatingPoint32Bit,
FloatingPoint64Bit,
}Variants§
None
String
Boolean
Integer8Bit
Integer16Bit
Integer32Bit
Integer64Bit
Integer128Bit
UnsignedInteger8Bit
UnsignedInteger16Bit
UnsignedInteger32Bit
UnsignedInteger64Bit
UnsignedInteger128Bit
FloatingPoint32Bit
FloatingPoint64Bit
Trait Implementations§
Source§impl Clone for VertexValueType
impl Clone for VertexValueType
Source§fn clone(&self) -> VertexValueType
fn clone(&self) -> VertexValueType
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 moreSource§impl Debug for VertexValueType
impl Debug for VertexValueType
Source§impl PartialEq for VertexValueType
impl PartialEq for VertexValueType
Source§impl PartialOrd for VertexValueType
impl PartialOrd for VertexValueType
impl StructuralPartialEq for VertexValueType
Auto Trait Implementations§
impl Freeze for VertexValueType
impl RefUnwindSafe for VertexValueType
impl Send for VertexValueType
impl Sync for VertexValueType
impl Unpin for VertexValueType
impl UnsafeUnpin for VertexValueType
impl UnwindSafe for VertexValueType
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more