pub struct IncidentNote {
pub id: String,
pub author: String,
pub content: String,
pub created_at: DateTime<Utc>,
}Expand description
Incident note
Fields§
§id: String§content: String§created_at: DateTime<Utc>Trait Implementations§
Source§impl Clone for IncidentNote
impl Clone for IncidentNote
Source§fn clone(&self) -> IncidentNote
fn clone(&self) -> IncidentNote
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 IncidentNote
impl Debug for IncidentNote
Source§impl<'de> Deserialize<'de> for IncidentNote
impl<'de> Deserialize<'de> for IncidentNote
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 IncidentNote
impl RefUnwindSafe for IncidentNote
impl Send for IncidentNote
impl Sync for IncidentNote
impl Unpin for IncidentNote
impl UnwindSafe for IncidentNote
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