pub enum VertexValue {
Show 15 variants
None,
String(String),
Boolean(bool),
Integer8Bit(i8),
Integer16Bit(i16),
Integer32Bit(i32),
Integer64Bit(i64),
Integer128Bit(i128),
UnsignedInteger8Bit(u8),
UnsignedInteger16Bit(u16),
UnsignedInteger32Bit(u32),
UnsignedInteger64Bit(u64),
UnsignedInteger128Bit(u128),
FloatingPoint32Bit(f32),
FloatingPoint64Bit(f64),
}Variants§
None
String(String)
Boolean(bool)
Integer8Bit(i8)
Integer16Bit(i16)
Integer32Bit(i32)
Integer64Bit(i64)
Integer128Bit(i128)
UnsignedInteger8Bit(u8)
UnsignedInteger16Bit(u16)
UnsignedInteger32Bit(u32)
UnsignedInteger64Bit(u64)
UnsignedInteger128Bit(u128)
FloatingPoint32Bit(f32)
FloatingPoint64Bit(f64)
Trait Implementations§
Source§impl Clone for VertexValue
impl Clone for VertexValue
Source§fn clone(&self) -> VertexValue
fn clone(&self) -> VertexValue
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 VertexValue
impl Debug for VertexValue
Source§impl From<String> for VertexValue
impl From<String> for VertexValue
Source§impl From<bool> for VertexValue
impl From<bool> for VertexValue
Source§impl From<f32> for VertexValue
impl From<f32> for VertexValue
Source§impl From<f64> for VertexValue
impl From<f64> for VertexValue
Source§impl From<i8> for VertexValue
impl From<i8> for VertexValue
Source§impl From<i16> for VertexValue
impl From<i16> for VertexValue
Source§impl From<i32> for VertexValue
impl From<i32> for VertexValue
Source§impl From<i64> for VertexValue
impl From<i64> for VertexValue
Source§impl From<i128> for VertexValue
impl From<i128> for VertexValue
Source§impl From<u8> for VertexValue
impl From<u8> for VertexValue
Source§impl From<u16> for VertexValue
impl From<u16> for VertexValue
Source§impl From<u32> for VertexValue
impl From<u32> for VertexValue
Source§impl From<u64> for VertexValue
impl From<u64> for VertexValue
Source§impl From<u128> for VertexValue
impl From<u128> for VertexValue
Source§impl PartialEq for VertexValue
impl PartialEq for VertexValue
Source§impl PartialOrd for VertexValue
impl PartialOrd for VertexValue
impl StructuralPartialEq for VertexValue
Auto Trait Implementations§
impl Freeze for VertexValue
impl RefUnwindSafe for VertexValue
impl Send for VertexValue
impl Sync for VertexValue
impl Unpin for VertexValue
impl UnsafeUnpin for VertexValue
impl UnwindSafe for VertexValue
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