Enum flechasdb::db::AttributeValue
source · pub enum AttributeValue {
String(String),
Uint64(u64),
}Expand description
Attribute value.
Variants§
Trait Implementations§
source§impl Clone for AttributeValue
impl Clone for AttributeValue
source§fn clone(&self) -> AttributeValue
fn clone(&self) -> AttributeValue
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 AttributeValue
impl Debug for AttributeValue
source§impl Deserialize<AttributeValue> for ProtosAttributeValue
impl Deserialize<AttributeValue> for ProtosAttributeValue
source§fn deserialize(self) -> Result<AttributeValue, Error>
fn deserialize(self) -> Result<AttributeValue, Error>
Deserializes the message.
source§impl From<&str> for AttributeValue
impl From<&str> for AttributeValue
source§impl From<String> for AttributeValue
impl From<String> for AttributeValue
source§impl From<u64> for AttributeValue
impl From<u64> for AttributeValue
source§impl PartialEq<AttributeValue> for AttributeValue
impl PartialEq<AttributeValue> for AttributeValue
source§fn eq(&self, other: &AttributeValue) -> bool
fn eq(&self, other: &AttributeValue) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl Serialize<AttributeValue> for AttributeValue
impl Serialize<AttributeValue> for AttributeValue
impl StructuralPartialEq for AttributeValue
Auto Trait Implementations§
impl RefUnwindSafe for AttributeValue
impl Send for AttributeValue
impl Sync for AttributeValue
impl Unpin for AttributeValue
impl UnwindSafe for AttributeValue
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