pub struct SystemInfo<'a> {
pub manufacturer: &'a str,
pub product_name: &'a str,
pub version: &'a str,
pub serial_number: &'a str,
pub uuid: Uuid,
pub sku_number: &'a str,
pub family: &'a str,
}
Fields§
§manufacturer: &'a str
§product_name: &'a str
§version: &'a str
§serial_number: &'a str
§uuid: Uuid
is exactly 16bytes long
sku_number: &'a str
§family: &'a str
Trait Implementations§
Source§impl<'a> Debug for SystemInfo<'a>
impl<'a> Debug for SystemInfo<'a>
Source§impl<'a> Hash for SystemInfo<'a>
impl<'a> Hash for SystemInfo<'a>
Source§impl<'a> PartialEq for SystemInfo<'a>
impl<'a> PartialEq for SystemInfo<'a>
impl<'a> Eq for SystemInfo<'a>
impl<'a> StructuralPartialEq for SystemInfo<'a>
Auto Trait Implementations§
impl<'a> Freeze for SystemInfo<'a>
impl<'a> RefUnwindSafe for SystemInfo<'a>
impl<'a> Send for SystemInfo<'a>
impl<'a> Sync for SystemInfo<'a>
impl<'a> Unpin for SystemInfo<'a>
impl<'a> UnwindSafe for SystemInfo<'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