pub enum AttributeIndexEntry {
Show 15 variants
Bool {
index: u16,
val: bool,
},
Int {
index: u16,
val: i32,
},
UInt {
index: u16,
val: u32,
},
Long {
index: u16,
val: i64,
},
ULong {
index: u16,
val: u64,
},
Float {
index: u16,
val: f32,
},
Double {
index: u16,
val: f64,
},
String {
index: u16,
val: String,
},
DateTime {
index: u16,
val: DateTime<Utc>,
},
Short {
index: u16,
val: i16,
},
UShort {
index: u16,
val: u16,
},
Byte {
index: u16,
val: u8,
},
UByte {
index: u16,
val: u8,
},
Json {
index: u16,
val: String,
},
Binary {
index: u16,
val: String,
},
}Variants§
Trait Implementations§
Source§impl Clone for AttributeIndexEntry
impl Clone for AttributeIndexEntry
Source§fn clone(&self) -> AttributeIndexEntry
fn clone(&self) -> AttributeIndexEntry
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 AttributeIndexEntry
impl Debug for AttributeIndexEntry
Source§impl PartialEq for AttributeIndexEntry
impl PartialEq for AttributeIndexEntry
Source§fn eq(&self, other: &AttributeIndexEntry) -> bool
fn eq(&self, other: &AttributeIndexEntry) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for AttributeIndexEntry
Auto Trait Implementations§
impl Freeze for AttributeIndexEntry
impl RefUnwindSafe for AttributeIndexEntry
impl Send for AttributeIndexEntry
impl Sync for AttributeIndexEntry
impl Unpin for AttributeIndexEntry
impl UnsafeUnpin for AttributeIndexEntry
impl UnwindSafe for AttributeIndexEntry
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