#[repr(C)]pub struct COPYFILE2_EXTENDED_PARAMETERS_V2 {
pub dwSize: DWORD,
pub dwCopyFlags: DWORD,
pub pfCancel: *mut BOOL,
pub pProgressRoutine: PCOPYFILE2_PROGRESS_ROUTINE,
pub pvCallbackContext: PVOID,
pub dwCopyFlagsV2: DWORD,
pub ioDesiredSize: ULONG,
pub ioDesiredRate: ULONG,
pub pProgressRoutineOld: LPPROGRESS_ROUTINE,
pub SourceOplockKeys: PCOPYFILE2_CREATE_OPLOCK_KEYS,
pub reserved: [PVOID; 6],
}Fields§
§dwSize: DWORD§dwCopyFlags: DWORD§pfCancel: *mut BOOL§pProgressRoutine: PCOPYFILE2_PROGRESS_ROUTINE§pvCallbackContext: PVOID§dwCopyFlagsV2: DWORD§ioDesiredSize: ULONG§ioDesiredRate: ULONG§pProgressRoutineOld: LPPROGRESS_ROUTINE§SourceOplockKeys: PCOPYFILE2_CREATE_OPLOCK_KEYS§reserved: [PVOID; 6]Trait Implementations§
Source§impl Clone for COPYFILE2_EXTENDED_PARAMETERS_V2
impl Clone for COPYFILE2_EXTENDED_PARAMETERS_V2
Source§fn clone(&self) -> COPYFILE2_EXTENDED_PARAMETERS_V2
fn clone(&self) -> COPYFILE2_EXTENDED_PARAMETERS_V2
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 COPYFILE2_EXTENDED_PARAMETERS_V2
Auto Trait Implementations§
impl Freeze for COPYFILE2_EXTENDED_PARAMETERS_V2
impl RefUnwindSafe for COPYFILE2_EXTENDED_PARAMETERS_V2
impl !Send for COPYFILE2_EXTENDED_PARAMETERS_V2
impl !Sync for COPYFILE2_EXTENDED_PARAMETERS_V2
impl Unpin for COPYFILE2_EXTENDED_PARAMETERS_V2
impl UnsafeUnpin for COPYFILE2_EXTENDED_PARAMETERS_V2
impl UnwindSafe for COPYFILE2_EXTENDED_PARAMETERS_V2
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