pub struct DocumentReview {
pub reviewer: String,
pub action: String,
pub comment: Vec<DocumentReviewComment>,
pub created_time: DateTime<Utc>,
pub updated_time: DateTime<Utc>,
}Fields§
§reviewer: String§action: String§comment: Vec<DocumentReviewComment>§created_time: DateTime<Utc>§updated_time: DateTime<Utc>Trait Implementations§
Source§impl Clone for DocumentReview
impl Clone for DocumentReview
Source§fn clone(&self) -> DocumentReview
fn clone(&self) -> DocumentReview
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 DocumentReview
impl Debug for DocumentReview
Source§impl<'de> Deserialize<'de> for DocumentReview
impl<'de> Deserialize<'de> for DocumentReview
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 DocumentReview
impl RefUnwindSafe for DocumentReview
impl Send for DocumentReview
impl Sync for DocumentReview
impl Unpin for DocumentReview
impl UnsafeUnpin for DocumentReview
impl UnwindSafe for DocumentReview
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