Struct smbioslib::SystemSlotCharacteristics1
source · [−]pub struct SystemSlotCharacteristics1 {
pub raw: u8,
}
Expand description
Fields
raw: u8
Raw value
raw is useful for masked comparisons.
Implementations
sourceimpl SystemSlotCharacteristics1
impl SystemSlotCharacteristics1
sourcepub fn provides5_volts(&self) -> bool
pub fn provides5_volts(&self) -> bool
Provides 5.0 volts.
sourcepub fn provides33_volts(&self) -> bool
pub fn provides33_volts(&self) -> bool
Provides 3.3 volts.
Slot’s opening is shared with another slot (for example, PCI/EISA shared slot).
sourcepub fn supports_pc_card16(&self) -> bool
pub fn supports_pc_card16(&self) -> bool
PC Card slot supports PC Card-16.
sourcepub fn supports_card_bus(&self) -> bool
pub fn supports_card_bus(&self) -> bool
PC Card slot supports CardBus.
sourcepub fn supports_zoom_video(&self) -> bool
pub fn supports_zoom_video(&self) -> bool
PC Card slot supports Zoom Video.
sourcepub fn supports_modem_ring_resume(&self) -> bool
pub fn supports_modem_ring_resume(&self) -> bool
PC Card slot supports Modem Ring Resume.
Trait Implementations
sourceimpl Debug for SystemSlotCharacteristics1
impl Debug for SystemSlotCharacteristics1
sourceimpl Deref for SystemSlotCharacteristics1
impl Deref for SystemSlotCharacteristics1
sourceimpl From<u8> for SystemSlotCharacteristics1
impl From<u8> for SystemSlotCharacteristics1
sourceimpl PartialEq<SystemSlotCharacteristics1> for SystemSlotCharacteristics1
impl PartialEq<SystemSlotCharacteristics1> for SystemSlotCharacteristics1
sourcefn eq(&self, other: &SystemSlotCharacteristics1) -> bool
fn eq(&self, other: &SystemSlotCharacteristics1) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &SystemSlotCharacteristics1) -> bool
fn ne(&self, other: &SystemSlotCharacteristics1) -> bool
This method tests for !=
.
impl Eq for SystemSlotCharacteristics1
impl StructuralEq for SystemSlotCharacteristics1
impl StructuralPartialEq for SystemSlotCharacteristics1
Auto Trait Implementations
impl RefUnwindSafe for SystemSlotCharacteristics1
impl Send for SystemSlotCharacteristics1
impl Sync for SystemSlotCharacteristics1
impl Unpin for SystemSlotCharacteristics1
impl UnwindSafe for SystemSlotCharacteristics1
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more