pub enum RuntimeAttributeValue {
String(String),
Integer(i64),
Float(f64),
Boolean(bool),
}Variants§
Trait Implementations§
Source§impl Clone for RuntimeAttributeValue
impl Clone for RuntimeAttributeValue
Source§fn clone(&self) -> RuntimeAttributeValue
fn clone(&self) -> RuntimeAttributeValue
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 RuntimeAttributeValue
impl Debug for RuntimeAttributeValue
Source§impl From<&str> for RuntimeAttributeValue
impl From<&str> for RuntimeAttributeValue
Source§impl From<String> for RuntimeAttributeValue
impl From<String> for RuntimeAttributeValue
Source§impl From<bool> for RuntimeAttributeValue
impl From<bool> for RuntimeAttributeValue
Source§impl From<i64> for RuntimeAttributeValue
impl From<i64> for RuntimeAttributeValue
Source§impl From<usize> for RuntimeAttributeValue
impl From<usize> for RuntimeAttributeValue
Source§impl PartialEq for RuntimeAttributeValue
impl PartialEq for RuntimeAttributeValue
impl StructuralPartialEq for RuntimeAttributeValue
Auto Trait Implementations§
impl Freeze for RuntimeAttributeValue
impl RefUnwindSafe for RuntimeAttributeValue
impl Send for RuntimeAttributeValue
impl Sync for RuntimeAttributeValue
impl Unpin for RuntimeAttributeValue
impl UnsafeUnpin for RuntimeAttributeValue
impl UnwindSafe for RuntimeAttributeValue
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