#[repr(C)]pub struct FileVersion {
pub major: u16,
pub minor: u16,
pub patch: u16,
}Expand description
ファイルバージョン(6バイト)。
Fields§
§major: u16メジャーバージョン。
minor: u16マイナーバージョン。
patch: u16パッチバージョン。
Implementations§
Trait Implementations§
Source§impl Clone for FileVersion
impl Clone for FileVersion
Source§fn clone(&self) -> FileVersion
fn clone(&self) -> FileVersion
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for FileVersion
Source§impl Debug for FileVersion
impl Debug for FileVersion
impl Eq for FileVersion
Source§impl Ord for FileVersion
impl Ord for FileVersion
Source§fn cmp(&self, other: &FileVersion) -> Ordering
fn cmp(&self, other: &FileVersion) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for FileVersion
impl PartialEq for FileVersion
Source§impl PartialOrd for FileVersion
impl PartialOrd for FileVersion
impl StructuralPartialEq for FileVersion
Auto Trait Implementations§
impl Freeze for FileVersion
impl RefUnwindSafe for FileVersion
impl Send for FileVersion
impl Sync for FileVersion
impl Unpin for FileVersion
impl UnsafeUnpin for FileVersion
impl UnwindSafe for FileVersion
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