pub struct WindowsInfo {
pub version: String,
pub architecture: String,
pub editions: Vec<String>,
pub image_count: u32,
pub total_size: u64,
}
Expand description
Windows 版本信息摘要
Fields§
§version: String
§architecture: String
§editions: Vec<String>
§image_count: u32
§total_size: u64
Trait Implementations§
Source§impl Clone for WindowsInfo
impl Clone for WindowsInfo
Source§fn clone(&self) -> WindowsInfo
fn clone(&self) -> WindowsInfo
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for WindowsInfo
impl Debug for WindowsInfo
Auto Trait Implementations§
impl Freeze for WindowsInfo
impl RefUnwindSafe for WindowsInfo
impl Send for WindowsInfo
impl Sync for WindowsInfo
impl Unpin for WindowsInfo
impl UnwindSafe for WindowsInfo
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