pub struct LargeInteger {
pub low_part: u32,
pub high_part: i32,
}Expand description
A struct representing a large integer, including low and high parts.
Fields§
§low_part: u32§high_part: i32Implementations§
Source§impl LargeInteger
impl LargeInteger
Sourcepub fn from(raw_large_integer: &LARGE_INTEGER) -> LargeInteger
pub fn from(raw_large_integer: &LARGE_INTEGER) -> LargeInteger
Sets the large integer from the given LARGE_INTEGER struct.
Sourcepub fn to_ntapi(&self) -> LARGE_INTEGER
pub fn to_ntapi(&self) -> LARGE_INTEGER
Converts the LargeInteger struct to the LARGE_INTEGER struct used by ntapi.
Auto Trait Implementations§
impl Freeze for LargeInteger
impl RefUnwindSafe for LargeInteger
impl Send for LargeInteger
impl Sync for LargeInteger
impl Unpin for LargeInteger
impl UnwindSafe for LargeInteger
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