pub struct OnboardingState {
pub completed_at: Option<DateTime<Utc>>,
pub version: u32,
pub agent_display_name: Option<String>,
pub first_memory: Option<FirstMemory>,
}Fields§
§completed_at: Option<DateTime<Utc>>§version: u32§agent_display_name: Option<String>§first_memory: Option<FirstMemory>Trait Implementations§
Source§impl Clone for OnboardingState
impl Clone for OnboardingState
Source§fn clone(&self) -> OnboardingState
fn clone(&self) -> OnboardingState
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 OnboardingState
impl Debug for OnboardingState
Source§impl Default for OnboardingState
impl Default for OnboardingState
Source§fn default() -> OnboardingState
fn default() -> OnboardingState
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for OnboardingState
impl<'de> Deserialize<'de> for OnboardingState
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 OnboardingState
impl PartialEq for OnboardingState
Source§fn eq(&self, other: &OnboardingState) -> bool
fn eq(&self, other: &OnboardingState) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for OnboardingState
impl Serialize for OnboardingState
impl StructuralPartialEq for OnboardingState
Auto Trait Implementations§
impl Freeze for OnboardingState
impl RefUnwindSafe for OnboardingState
impl Send for OnboardingState
impl Sync for OnboardingState
impl Unpin for OnboardingState
impl UnsafeUnpin for OnboardingState
impl UnwindSafe for OnboardingState
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