pub struct BootProfileBin {
pub id: String,
pub display_name: Option<String>,
pub rootfs: BootProfileRootfsBin,
pub kernel: Option<BootProfileArtifactPathSourceBin>,
pub dtbs: Option<BootProfileArtifactPathSourceBin>,
pub dt_overlays: Vec<Vec<u8>>,
pub extra_cmdline: Option<String>,
pub stage0: BootProfileStage0Bin,
}Fields§
§id: String§display_name: Option<String>§rootfs: BootProfileRootfsBin§kernel: Option<BootProfileArtifactPathSourceBin>§dtbs: Option<BootProfileArtifactPathSourceBin>§dt_overlays: Vec<Vec<u8>>§extra_cmdline: Option<String>§stage0: BootProfileStage0BinTrait Implementations§
Source§impl Clone for BootProfileBin
impl Clone for BootProfileBin
Source§fn clone(&self) -> BootProfileBin
fn clone(&self) -> BootProfileBin
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 BootProfileBin
impl Debug for BootProfileBin
Source§impl<'de> Deserialize<'de> for BootProfileBin
impl<'de> Deserialize<'de> for BootProfileBin
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<BootProfileBin, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<BootProfileBin, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl From<BootProfile> for BootProfileBin
impl From<BootProfile> for BootProfileBin
Source§fn from(profile: BootProfile) -> BootProfileBin
fn from(profile: BootProfile) -> BootProfileBin
Converts to this type from the input type.
Source§impl From<BootProfileBin> for BootProfile
impl From<BootProfileBin> for BootProfile
Source§fn from(profile: BootProfileBin) -> BootProfile
fn from(profile: BootProfileBin) -> BootProfile
Converts to this type from the input type.
Source§impl Serialize for BootProfileBin
impl Serialize for BootProfileBin
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
Auto Trait Implementations§
impl Freeze for BootProfileBin
impl RefUnwindSafe for BootProfileBin
impl Send for BootProfileBin
impl Sync for BootProfileBin
impl Unpin for BootProfileBin
impl UnsafeUnpin for BootProfileBin
impl UnwindSafe for BootProfileBin
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