pub struct ChangeFollowupRecord {
pub gate_id: Uuid,
pub actor: String,
pub outcome: FollowupOutcome,
pub note: Option<String>,
pub details: Value,
pub recorded_at: DateTime<Utc>,
}Expand description
Recorded follow-up decision.
Fields§
§gate_id: Uuid§actor: String§outcome: FollowupOutcome§note: Option<String>§details: Value§recorded_at: DateTime<Utc>Implementations§
Trait Implementations§
Source§impl Clone for ChangeFollowupRecord
impl Clone for ChangeFollowupRecord
Source§fn clone(&self) -> ChangeFollowupRecord
fn clone(&self) -> ChangeFollowupRecord
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 ChangeFollowupRecord
impl Debug for ChangeFollowupRecord
Source§impl<'de> Deserialize<'de> for ChangeFollowupRecord
impl<'de> Deserialize<'de> for ChangeFollowupRecord
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
Auto Trait Implementations§
impl Freeze for ChangeFollowupRecord
impl RefUnwindSafe for ChangeFollowupRecord
impl Send for ChangeFollowupRecord
impl Sync for ChangeFollowupRecord
impl Unpin for ChangeFollowupRecord
impl UnwindSafe for ChangeFollowupRecord
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