Struct wick_config::v1::Metadata
source · pub struct Metadata {
pub version: String,
pub authors: Vec<String>,
pub vendors: Vec<String>,
pub description: Option<String>,
pub documentation: Option<String>,
pub licenses: Vec<String>,
pub icon: Option<LocationReference>,
}Expand description
Metadata to associate with an artifact.
Fields§
§version: StringThe version of the artifact.
A list of the authors.
vendors: Vec<String>A list of any vendors associated with the artifact.
description: Option<String>A short description.
documentation: Option<String>Where to find documentation.
licenses: Vec<String>The license(s) for the artifact.
icon: Option<LocationReference>An icon to associate with the artifact.
Trait Implementations§
source§impl<'de> Deserialize<'de> for Metadata
impl<'de> Deserialize<'de> for Metadata
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
source§impl PartialEq<Metadata> for Metadata
impl PartialEq<Metadata> for Metadata
impl StructuralPartialEq for Metadata
Auto Trait Implementations§
impl RefUnwindSafe for Metadata
impl Send for Metadata
impl Sync for Metadata
impl Unpin for Metadata
impl UnwindSafe for Metadata
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