[][src]Struct CCODE::JOBOBJECT_IO_RATE_CONTROL_INFORMATION_NATIVE_V3

#[repr(C)]pub struct JOBOBJECT_IO_RATE_CONTROL_INFORMATION_NATIVE_V3 {
    pub MaxIops: LONG64,
    pub MaxBandwidth: LONG64,
    pub ReservationIops: LONG64,
    pub VolumeName: PWSTR,
    pub BaseIoSize: DWORD,
    pub ControlFlags: JOB_OBJECT_IO_RATE_CONTROL_FLAGS,
    pub VolumeNameLength: WORD,
    pub CriticalReservationIops: LONG64,
    pub ReservationBandwidth: LONG64,
    pub CriticalReservationBandwidth: LONG64,
    pub MaxTimePercent: LONG64,
    pub ReservationTimePercent: LONG64,
    pub CriticalReservationTimePercent: LONG64,
    pub SoftMaxIops: LONG64,
    pub SoftMaxBandwidth: LONG64,
    pub SoftMaxTimePercent: LONG64,
    pub LimitExcessNotifyIops: LONG64,
    pub LimitExcessNotifyBandwidth: LONG64,
    pub LimitExcessNotifyTimePercent: LONG64,
}

Fields

MaxIops: LONG64MaxBandwidth: LONG64ReservationIops: LONG64VolumeName: PWSTRBaseIoSize: DWORDControlFlags: JOB_OBJECT_IO_RATE_CONTROL_FLAGSVolumeNameLength: WORDCriticalReservationIops: LONG64ReservationBandwidth: LONG64CriticalReservationBandwidth: LONG64MaxTimePercent: LONG64ReservationTimePercent: LONG64CriticalReservationTimePercent: LONG64SoftMaxIops: LONG64SoftMaxBandwidth: LONG64SoftMaxTimePercent: LONG64LimitExcessNotifyIops: LONG64LimitExcessNotifyBandwidth: LONG64LimitExcessNotifyTimePercent: LONG64

Trait Implementations

impl Clone for JOBOBJECT_IO_RATE_CONTROL_INFORMATION_NATIVE_V3[src]

impl Copy for JOBOBJECT_IO_RATE_CONTROL_INFORMATION_NATIVE_V3[src]

impl Debug for JOBOBJECT_IO_RATE_CONTROL_INFORMATION_NATIVE_V3[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.