#[repr(C)]
pub struct TXFS_QUERY_RM_INFORMATION {
Show 26 fields pub BytesRequired: u32, pub TailLsn: u64, pub CurrentLsn: u64, pub ArchiveTailLsn: u64, pub LogContainerSize: u64, pub HighestVirtualClock: i64, pub LogContainerCount: u32, pub LogContainerCountMax: u32, pub LogContainerCountMin: u32, pub LogGrowthIncrement: u32, pub LogAutoShrinkPercentage: u32, pub Flags: TXFS_RMF_LAGS, pub LoggingMode: u16, pub Reserved: u16, pub RmState: u32, pub LogCapacity: u64, pub LogFree: u64, pub TopsSize: u64, pub TopsUsed: u64, pub TransactionCount: u64, pub OnePCCount: u64, pub TwoPCCount: u64, pub NumberLogFileFull: u64, pub OldestTransactionAge: u64, pub RMName: GUID, pub TmLogPathOffset: u32,
}

Fields§

§BytesRequired: u32§TailLsn: u64§CurrentLsn: u64§ArchiveTailLsn: u64§LogContainerSize: u64§HighestVirtualClock: i64§LogContainerCount: u32§LogContainerCountMax: u32§LogContainerCountMin: u32§LogGrowthIncrement: u32§LogAutoShrinkPercentage: u32§Flags: TXFS_RMF_LAGS§LoggingMode: u16§Reserved: u16§RmState: u32§LogCapacity: u64§LogFree: u64§TopsSize: u64§TopsUsed: u64§TransactionCount: u64§OnePCCount: u64§TwoPCCount: u64§NumberLogFileFull: u64§OldestTransactionAge: u64§RMName: GUID§TmLogPathOffset: u32

Trait Implementations§

§

impl Clone for TXFS_QUERY_RM_INFORMATION

§

fn clone(&self) -> TXFS_QUERY_RM_INFORMATION

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
§

impl Copy for TXFS_QUERY_RM_INFORMATION

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> CloneToUninit for T
where T: Clone,

source§

default unsafe fn clone_to_uninit(&self, dst: *mut T)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
source§

impl<T> CloneToUninit for T
where T: Copy,

source§

unsafe fn clone_to_uninit(&self, dst: *mut T)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.