pub struct CognitiveTrail {
pub entry: String,
pub exit: String,
pub date: String,
pub emotion: EmotionMode,
}Fields§
§entry: String§exit: String§date: String§emotion: EmotionModeTrait Implementations§
Source§impl Clone for CognitiveTrail
impl Clone for CognitiveTrail
Source§fn clone(&self) -> CognitiveTrail
fn clone(&self) -> CognitiveTrail
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 CognitiveTrail
impl Debug for CognitiveTrail
Source§impl<'de> Deserialize<'de> for CognitiveTrail
impl<'de> Deserialize<'de> for CognitiveTrail
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 for CognitiveTrail
impl PartialEq for CognitiveTrail
Source§fn eq(&self, other: &CognitiveTrail) -> bool
fn eq(&self, other: &CognitiveTrail) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for CognitiveTrail
impl Serialize for CognitiveTrail
impl StructuralPartialEq for CognitiveTrail
Auto Trait Implementations§
impl Freeze for CognitiveTrail
impl RefUnwindSafe for CognitiveTrail
impl Send for CognitiveTrail
impl Sync for CognitiveTrail
impl Unpin for CognitiveTrail
impl UnsafeUnpin for CognitiveTrail
impl UnwindSafe for CognitiveTrail
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