pub struct BundleStatement {
pub type_: String,
pub timestamp: String,
pub tag: Option<String>,
pub description: Option<String>,
pub artifacts: Vec<ArtifactRef>,
pub policy_ref: Option<String>,
pub meta: Option<Value>,
}Expand description
Groups a set of artifacts into a named, signed bundle.
Fields§
§type_: String§timestamp: String§tag: Option<String>§description: Option<String>§artifacts: Vec<ArtifactRef>§policy_ref: Option<String>§meta: Option<Value>Trait Implementations§
Source§impl Clone for BundleStatement
impl Clone for BundleStatement
Source§fn clone(&self) -> BundleStatement
fn clone(&self) -> BundleStatement
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 BundleStatement
impl Debug for BundleStatement
Source§impl<'de> Deserialize<'de> for BundleStatement
impl<'de> Deserialize<'de> for BundleStatement
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 BundleStatement
impl RefUnwindSafe for BundleStatement
impl Send for BundleStatement
impl Sync for BundleStatement
impl Unpin for BundleStatement
impl UnsafeUnpin for BundleStatement
impl UnwindSafe for BundleStatement
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