#[repr(C)]pub union _version_number_t {
pub version: uint64,
pub version_uint: _version_number_t__bindgen_ty_1,
pub version_parts: _version_number_t__bindgen_ty_2,
}Expand description
Used to hold .rsrc section version number information. This number is usually presented as p1.p2.p3.p4 by PE parsing tools.
Fields§
§version: uint64< Representation as a 64-bit integer.
version_uint: _version_number_t__bindgen_ty_1< Representation as 2 32-bit integers.
version_parts: _version_number_t__bindgen_ty_2< Representation as 4 16-bit integers.
Trait Implementations§
Source§impl Clone for _version_number_t
impl Clone for _version_number_t
Source§fn clone(&self) -> _version_number_t
fn clone(&self) -> _version_number_t
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 moreimpl Copy for _version_number_t
Auto Trait Implementations§
impl Freeze for _version_number_t
impl RefUnwindSafe for _version_number_t
impl Send for _version_number_t
impl Sync for _version_number_t
impl Unpin for _version_number_t
impl UnsafeUnpin for _version_number_t
impl UnwindSafe for _version_number_t
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more