pub struct AdditionalInformationEntry<'a> { /* private fields */ }
Expand description
§Additional Information Entry contained within SMBiosAdditionalInformation
Implementations§
Source§impl<'a> AdditionalInformationEntry<'a>
impl<'a> AdditionalInformationEntry<'a>
Sourcepub fn entry_length(&self) -> Option<u8>
pub fn entry_length(&self) -> Option<u8>
Length of this Additional Information Entry instance; a minimum of 6
Sourcepub fn referenced_handle(&self) -> Option<Handle>
pub fn referenced_handle(&self) -> Option<Handle>
Handle, or instance number, associated with the structure for which additional information is provided
Sourcepub fn referenced_offset(&self) -> Option<u8>
pub fn referenced_offset(&self) -> Option<u8>
Offset of the field within the structure referenced by the Referenced Handle for which additional information is provided
Sourcepub fn string(&self) -> SMBiosString
pub fn string(&self) -> SMBiosString
Number of the optional string to be associated with the field referenced by the Referenced Offset
Sourcepub fn value(&self) -> Option<&[u8]>
pub fn value(&self) -> Option<&[u8]>
Enumerated value or updated field content that has not yet been approved for publication in this specification and therefore could not be used in the field referenced by Referenced Offset
NOTE: This field is the same type and size as the field being referenced by this Additional Information Entry.
Trait Implementations§
Source§impl Debug for AdditionalInformationEntry<'_>
impl Debug for AdditionalInformationEntry<'_>
Auto Trait Implementations§
impl<'a> Freeze for AdditionalInformationEntry<'a>
impl<'a> RefUnwindSafe for AdditionalInformationEntry<'a>
impl<'a> Send for AdditionalInformationEntry<'a>
impl<'a> Sync for AdditionalInformationEntry<'a>
impl<'a> Unpin for AdditionalInformationEntry<'a>
impl<'a> UnwindSafe for AdditionalInformationEntry<'a>
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