pub enum Details {
System(SystemInfo),
Structure(StructureInfo),
}Expand description
Info to use in return values
Stores SystemInfo and StructureInfo TODO: Is this really the best approach? If it’s just two types, may want to just split the API.
Variants§
System(SystemInfo)
Structure(StructureInfo)
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Details
impl RefUnwindSafe for Details
impl Send for Details
impl Sync for Details
impl Unpin for Details
impl UnsafeUnpin for Details
impl UnwindSafe for Details
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