pub struct BiosCharacteristicsExtension0 {
pub acpi_is_supported: bool,
pub usb_legacy_is_supported: bool,
pub agp_is_supported: bool,
pub i2oboot_is_supported: bool,
pub ls120super_disk_boot_is_supported: bool,
pub atapi_zip_drive_boot_is_supported: bool,
pub boot_1394is_supported: bool,
pub smart_battery_is_supported: bool,
}Expand description
Characteristics extension byte 0
Fields§
§acpi_is_supported: boolACPI is supported
usb_legacy_is_supported: boolUSB Legacy is supported
agp_is_supported: boolAGP is supported
i2oboot_is_supported: boolI2O boot is supported
ls120super_disk_boot_is_supported: boolLS-120 SuperDisk boot is supported
atapi_zip_drive_boot_is_supported: boolATAPI ZIP drive boot is supported
boot_1394is_supported: bool1394 boot is supported
smart_battery_is_supported: boolSmart battery is supported
Trait Implementations§
Source§impl Clone for BiosCharacteristicsExtension0
impl Clone for BiosCharacteristicsExtension0
Source§fn clone(&self) -> BiosCharacteristicsExtension0
fn clone(&self) -> BiosCharacteristicsExtension0
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<'de> Deserialize<'de> for BiosCharacteristicsExtension0
impl<'de> Deserialize<'de> for BiosCharacteristicsExtension0
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 From<BiosCharacteristicsExtension0> for BiosCharacteristicsExtension0
impl From<BiosCharacteristicsExtension0> for BiosCharacteristicsExtension0
Source§fn from(value: BiosCharacteristicsExtension0) -> Self
fn from(value: BiosCharacteristicsExtension0) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for BiosCharacteristicsExtension0
impl RefUnwindSafe for BiosCharacteristicsExtension0
impl Send for BiosCharacteristicsExtension0
impl Sync for BiosCharacteristicsExtension0
impl Unpin for BiosCharacteristicsExtension0
impl UnwindSafe for BiosCharacteristicsExtension0
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more