pub struct CustomerFollowUp {
pub customer_id: CustomerId,
pub reason: FollowUpReason,
pub due_at: DateTime<Utc>,
}Expand description
Customer follow-up item generated from validated operational evidence.
Fields§
§customer_id: CustomerIdCustomer id fact promoted into this daily brief contract.
reason: FollowUpReasonBusiness reason staff should review before proceeding.
due_at: DateTime<Utc>Due at fact promoted into this daily brief contract.
Trait Implementations§
Source§impl Clone for CustomerFollowUp
impl Clone for CustomerFollowUp
Source§fn clone(&self) -> CustomerFollowUp
fn clone(&self) -> CustomerFollowUp
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 CustomerFollowUp
impl Debug for CustomerFollowUp
Source§impl<'de> Deserialize<'de> for CustomerFollowUp
impl<'de> Deserialize<'de> for CustomerFollowUp
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 CustomerFollowUp
impl PartialEq for CustomerFollowUp
Source§impl Serialize for CustomerFollowUp
impl Serialize for CustomerFollowUp
impl Eq for CustomerFollowUp
impl StructuralPartialEq for CustomerFollowUp
Auto Trait Implementations§
impl Freeze for CustomerFollowUp
impl RefUnwindSafe for CustomerFollowUp
impl Send for CustomerFollowUp
impl Sync for CustomerFollowUp
impl Unpin for CustomerFollowUp
impl UnsafeUnpin for CustomerFollowUp
impl UnwindSafe for CustomerFollowUp
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