pub struct ReviewNote {
pub note_id: Uuid,
pub reviewer_id: String,
pub note: String,
pub status: ReviewNoteStatus,
pub created_at: DateTime<Utc>,
pub resolved_at: Option<DateTime<Utc>>,
}Expand description
Review note on a workpaper.
Fields§
§note_id: UuidNote ID
reviewer_id: StringReviewer who added the note
note: StringNote content
status: ReviewNoteStatusNote status
created_at: DateTime<Utc>When the note was created
resolved_at: Option<DateTime<Utc>>When the note was resolved
Trait Implementations§
Source§impl Clone for ReviewNote
impl Clone for ReviewNote
Source§fn clone(&self) -> ReviewNote
fn clone(&self) -> ReviewNote
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 ReviewNote
impl Debug for ReviewNote
Source§impl<'de> Deserialize<'de> for ReviewNote
impl<'de> Deserialize<'de> for ReviewNote
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 ReviewNote
impl RefUnwindSafe for ReviewNote
impl Send for ReviewNote
impl Sync for ReviewNote
impl Unpin for ReviewNote
impl UnwindSafe for ReviewNote
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