pub struct ArtifactReview {
pub resource_uri: String,
pub disposition: ArtifactDisposition,
pub comments: CommentThread,
pub reviewed_at: Option<DateTime<Utc>>,
}Expand description
Review data for a single artifact.
Fields§
§resource_uri: StringThe artifact’s resource URI.
disposition: ArtifactDispositionCurrent disposition (defaults to Pending).
comments: CommentThreadComment thread for this artifact.
reviewed_at: Option<DateTime<Utc>>When this artifact was last reviewed (disposition set).
Trait Implementations§
Source§impl Clone for ArtifactReview
impl Clone for ArtifactReview
Source§fn clone(&self) -> ArtifactReview
fn clone(&self) -> ArtifactReview
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 ArtifactReview
impl Debug for ArtifactReview
Source§impl<'de> Deserialize<'de> for ArtifactReview
impl<'de> Deserialize<'de> for ArtifactReview
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 ArtifactReview
impl RefUnwindSafe for ArtifactReview
impl Send for ArtifactReview
impl Sync for ArtifactReview
impl Unpin for ArtifactReview
impl UnsafeUnpin for ArtifactReview
impl UnwindSafe for ArtifactReview
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