pub struct Buildpack {
pub id: BuildpackId,
pub name: Option<String>,
pub version: BuildpackVersion,
pub homepage: Option<String>,
pub clear_env: bool,
pub description: Option<String>,
pub keywords: Vec<String>,
pub licenses: Vec<License>,
pub sbom_formats: HashSet<SbomFormat>,
}Fields§
§id: BuildpackId§name: Option<String>§version: BuildpackVersion§homepage: Option<String>§clear_env: bool§description: Option<String>§keywords: Vec<String>§licenses: Vec<License>§sbom_formats: HashSet<SbomFormat>Trait Implementations§
Source§impl<'de> Deserialize<'de> for Buildpack
impl<'de> Deserialize<'de> for Buildpack
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 Buildpack
impl RefUnwindSafe for Buildpack
impl Send for Buildpack
impl Sync for Buildpack
impl Unpin for Buildpack
impl UnwindSafe for Buildpack
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