BiosCharacteristics

Struct BiosCharacteristics 

Source
pub struct BiosCharacteristics {
Show 30 fields pub unknown: bool, pub bios_characteristics_not_supported: bool, pub isa_supported: bool, pub mca_supported: bool, pub eisa_supported: bool, pub pci_supported: bool, pub pcmcia_supported: bool, pub plug_and_play_supported: bool, pub apm_supported: bool, pub bios_upgradeable: bool, pub bios_shadowing_allowed: bool, pub vlvesa_supported: bool, pub escd_support_available: bool, pub boot_from_cdsupported: bool, pub selectable_boot_supported: bool, pub bios_rom_socketed: bool, pub boot_from_pcmcia_supported: bool, pub edd_specification_supported: bool, pub floppy_nec_japanese_supported: bool, pub floppy_toshiba_japanese_supported: bool, pub floppy_525_360_supported: bool, pub floppy_525_12_supported: bool, pub floppy_35_720_supported: bool, pub floppy_35_288_supported: bool, pub print_screen_service_supported: bool, pub keyboard_8042services_supported: bool, pub serial_services_supported: bool, pub printer_services_supported: bool, pub cga_mono_video_services_supported: bool, pub nec_pc_98supported: bool,
}
Expand description

BIOS characteristics

Fields§

§unknown: bool

Unknown

§bios_characteristics_not_supported: bool

BIOS Characteristics aren’t supported

§isa_supported: bool

ISA is supported

§mca_supported: bool

MCA is supported

§eisa_supported: bool

EISA is supported

§pci_supported: bool

PCI is supported

§pcmcia_supported: bool

PCMCIA is supported

§plug_and_play_supported: bool

Plug-n-play is supported

§apm_supported: bool

APM is supported

§bios_upgradeable: bool

BIOS is upgradeable (Flash)

§bios_shadowing_allowed: bool

BIOS shadowing is allowed

§vlvesa_supported: bool

VL-VESA is supported

§escd_support_available: bool

ESCD support is available

§boot_from_cdsupported: bool

Boot from CD is supported

§selectable_boot_supported: bool

Selectable boot is supported

§bios_rom_socketed: bool

BIOS ROM is socketed (e.g. PLCC or SOP socket)

§boot_from_pcmcia_supported: bool

Boot from PCMCIA is supported

§edd_specification_supported: bool

EDD specification is supported

§floppy_nec_japanese_supported: bool

Japanese floppy for NEC 9800 1.2 MB (3.5“, 1K bytes/sector, 360 RPM) is supported

§floppy_toshiba_japanese_supported: bool

Japanese floppy for Toshiba 1.2 MB (3.5“, 360 RPM) is supported

§floppy_525_360_supported: bool

5.25“ / 360 KB floppy services are supported

§floppy_525_12_supported: bool

5.25“ / 1.2 MB floppy services are supported

§floppy_35_720_supported: bool

3.5“ / 720 KB floppy services are supported

§floppy_35_288_supported: bool

3.5“ 2.88 MB floppy services are supported

§print_screen_service_supported: bool

PrintScreen service is supported

§keyboard_8042services_supported: bool

8042 keyboard services are supported

§serial_services_supported: bool

Serial services are supported

§printer_services_supported: bool

Printer services are supported

§cga_mono_video_services_supported: bool

CGA/Mono Video Services are supported

§nec_pc_98supported: bool

NEC PC-98 supported

Trait Implementations§

Source§

impl Clone for BiosCharacteristics

Source§

fn clone(&self) -> BiosCharacteristics

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for BiosCharacteristics

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<'de> Deserialize<'de> for BiosCharacteristics

Source§

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<BiosCharacteristics> for BiosCharacteristics

Source§

fn from(value: BiosCharacteristics) -> Self

Converts to this type from the input type.
Source§

impl Serialize for BiosCharacteristics

Source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
Source§

impl ToJson for BiosCharacteristics

Source§

fn to_json(&self) -> Result<String>
where Self: Serialize,

Convert object data to machine-readable JSON format (without unnecessary indentation and newline transitions)
Source§

fn to_json_pretty(&self) -> Result<String>
where Self: Serialize,

Convert object data to human-readable JSON format (“pretty”; with additional newline transitions and indentation)

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> IntoEither for T

Source§

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 more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

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
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,