Enum lu_formats::files::fdb::VariantType
source · pub enum VariantType {
Null,
I32,
U32,
Real,
Nvarchar,
Bool,
I64,
U64,
Text,
}
Expand description
Variants§
Null
Value: 0
I32
Value: 1
U32
Value: 2
Real
Value: 3
Nvarchar
Value: 4
Bool
Value: 5
I64
Value: 6
U64
Value: 7
Text
Value: 8
Implementations§
source§impl VariantType
impl VariantType
Trait Implementations§
source§impl Clone for VariantType
impl Clone for VariantType
source§fn clone(&self) -> VariantType
fn clone(&self) -> VariantType
Returns a copy of the value. Read more
1.0.0 · 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 VariantType
impl Debug for VariantType
source§impl<'de> Deserialize<'de> for VariantType
impl<'de> Deserialize<'de> for VariantType
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl PartialEq<VariantType> for VariantType
impl PartialEq<VariantType> for VariantType
source§fn eq(&self, other: &VariantType) -> bool
fn eq(&self, other: &VariantType) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for VariantType
impl Serialize for VariantType
source§impl TryFrom<u32> for VariantType
impl TryFrom<u32> for VariantType
source§impl TryFrom<u8> for VariantType
impl TryFrom<u8> for VariantType
impl Copy for VariantType
impl Eq for VariantType
impl StructuralEq for VariantType
impl StructuralPartialEq for VariantType
Auto Trait Implementations§
impl RefUnwindSafe for VariantType
impl Send for VariantType
impl Sync for VariantType
impl Unpin for VariantType
impl UnwindSafe for VariantType
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