#[non_exhaustive]pub enum ArtifactMetadataStorage {
GoogleArtifactAnalysis(Box<GoogleArtifactAnalysis>),
}Expand description
The storage location of the artifact metadata.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
GoogleArtifactAnalysis(Box<GoogleArtifactAnalysis>)
Optional. Set if the artifact metadata is stored in Artifact analysis.
Trait Implementations§
Source§impl Clone for ArtifactMetadataStorage
impl Clone for ArtifactMetadataStorage
Source§fn clone(&self) -> ArtifactMetadataStorage
fn clone(&self) -> ArtifactMetadataStorage
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 ArtifactMetadataStorage
impl Debug for ArtifactMetadataStorage
Source§impl PartialEq for ArtifactMetadataStorage
impl PartialEq for ArtifactMetadataStorage
impl StructuralPartialEq for ArtifactMetadataStorage
Auto Trait Implementations§
impl Freeze for ArtifactMetadataStorage
impl RefUnwindSafe for ArtifactMetadataStorage
impl Send for ArtifactMetadataStorage
impl Sync for ArtifactMetadataStorage
impl Unpin for ArtifactMetadataStorage
impl UnwindSafe for ArtifactMetadataStorage
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