pub struct BootProfileDevice {
pub dt_overlays: Vec<Vec<u8>>,
pub extra_cmdline: Option<String>,
pub stage0: BootProfileDeviceStage0,
}Fields§
§dt_overlays: Vec<Vec<u8>>§extra_cmdline: Option<String>§stage0: BootProfileDeviceStage0Trait Implementations§
Source§impl Clone for BootProfileDevice
impl Clone for BootProfileDevice
Source§fn clone(&self) -> BootProfileDevice
fn clone(&self) -> BootProfileDevice
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 BootProfileDevice
impl Debug for BootProfileDevice
Source§impl Default for BootProfileDevice
impl Default for BootProfileDevice
Source§fn default() -> BootProfileDevice
fn default() -> BootProfileDevice
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for BootProfileDevice
impl<'de> Deserialize<'de> for BootProfileDevice
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<BootProfileDevice, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<BootProfileDevice, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl From<BootProfileDevice> for BootProfileDeviceBin
impl From<BootProfileDevice> for BootProfileDeviceBin
Source§fn from(device: BootProfileDevice) -> BootProfileDeviceBin
fn from(device: BootProfileDevice) -> BootProfileDeviceBin
Converts to this type from the input type.
Source§impl From<BootProfileDeviceBin> for BootProfileDevice
impl From<BootProfileDeviceBin> for BootProfileDevice
Source§fn from(device: BootProfileDeviceBin) -> BootProfileDevice
fn from(device: BootProfileDeviceBin) -> BootProfileDevice
Converts to this type from the input type.
Source§impl PartialEq for BootProfileDevice
impl PartialEq for BootProfileDevice
Source§fn eq(&self, other: &BootProfileDevice) -> bool
fn eq(&self, other: &BootProfileDevice) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for BootProfileDevice
impl Serialize for BootProfileDevice
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
impl Eq for BootProfileDevice
impl StructuralPartialEq for BootProfileDevice
Auto Trait Implementations§
impl Freeze for BootProfileDevice
impl RefUnwindSafe for BootProfileDevice
impl Send for BootProfileDevice
impl Sync for BootProfileDevice
impl Unpin for BootProfileDevice
impl UnsafeUnpin for BootProfileDevice
impl UnwindSafe for BootProfileDevice
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