pub struct BundleMetadata {
pub name: String,
pub version: String,
pub carrier: String,
pub artifact: String,
pub digest: Option<String>,
pub description: Option<String>,
pub talos_protocol: Option<String>,
}Expand description
Stable identity and artifact metadata for a Bundle.
Fields§
§name: String§version: String§carrier: String§artifact: String§digest: Option<String>§description: Option<String>§talos_protocol: Option<String>Trait Implementations§
Source§impl Clone for BundleMetadata
impl Clone for BundleMetadata
Source§fn clone(&self) -> BundleMetadata
fn clone(&self) -> BundleMetadata
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 BundleMetadata
impl Debug for BundleMetadata
Source§impl<'de> Deserialize<'de> for BundleMetadata
impl<'de> Deserialize<'de> for BundleMetadata
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 BundleMetadata
impl RefUnwindSafe for BundleMetadata
impl Send for BundleMetadata
impl Sync for BundleMetadata
impl Unpin for BundleMetadata
impl UnsafeUnpin for BundleMetadata
impl UnwindSafe for BundleMetadata
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