pub enum ArtifactChangeKind {
Added,
Modified,
Deleted,
Unchanged,
}Expand description
Incremental difference from the previous published artifact set.
Variants§
Added
Artifact did not exist previously.
Modified
Artifact content changed.
Deleted
Artifact is absent from the current scan.
Unchanged
Artifact fingerprint is unchanged.
Trait Implementations§
Source§impl Clone for ArtifactChangeKind
impl Clone for ArtifactChangeKind
Source§fn clone(&self) -> ArtifactChangeKind
fn clone(&self) -> ArtifactChangeKind
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 moreimpl Copy for ArtifactChangeKind
Source§impl Debug for ArtifactChangeKind
impl Debug for ArtifactChangeKind
Source§impl<'de> Deserialize<'de> for ArtifactChangeKind
impl<'de> Deserialize<'de> for ArtifactChangeKind
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
impl Eq for ArtifactChangeKind
Source§impl JsonSchema for ArtifactChangeKind
impl JsonSchema for ArtifactChangeKind
Source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Returns a string that uniquely identifies the schema produced by this type. Read more
Source§fn json_schema(generator: &mut SchemaGenerator) -> Schema
fn json_schema(generator: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
Source§fn inline_schema() -> bool
fn inline_schema() -> bool
Whether JSON Schemas generated for this type should be included directly in parent schemas,
rather than being re-used where possible using the
$ref keyword. Read moreSource§impl PartialEq for ArtifactChangeKind
impl PartialEq for ArtifactChangeKind
Source§impl Serialize for ArtifactChangeKind
impl Serialize for ArtifactChangeKind
impl StructuralPartialEq for ArtifactChangeKind
Auto Trait Implementations§
impl Freeze for ArtifactChangeKind
impl RefUnwindSafe for ArtifactChangeKind
impl Send for ArtifactChangeKind
impl Sync for ArtifactChangeKind
impl Unpin for ArtifactChangeKind
impl UnsafeUnpin for ArtifactChangeKind
impl UnwindSafe for ArtifactChangeKind
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