pub enum ChatRecordDataValue {
String(String),
Int(i32),
Bool(bool),
}
Variants§
Trait Implementations§
Source§impl Clone for ChatRecordDataValue
impl Clone for ChatRecordDataValue
Source§fn clone(&self) -> ChatRecordDataValue
fn clone(&self) -> ChatRecordDataValue
Returns a duplicate 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 ChatRecordDataValue
impl Debug for ChatRecordDataValue
Source§impl PartialEq for ChatRecordDataValue
impl PartialEq for ChatRecordDataValue
impl StructuralPartialEq for ChatRecordDataValue
Auto Trait Implementations§
impl Freeze for ChatRecordDataValue
impl RefUnwindSafe for ChatRecordDataValue
impl Send for ChatRecordDataValue
impl Sync for ChatRecordDataValue
impl Unpin for ChatRecordDataValue
impl UnwindSafe for ChatRecordDataValue
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