Trait windows::Win32::Networking::BackgroundIntelligentTransferService::IEnumBackgroundCopyFiles_Impl
pub trait IEnumBackgroundCopyFiles_Impl: Sized {
// Required methods
fn Next(
&self,
celt: u32,
rgelt: *mut Option<IBackgroundCopyFile>,
pceltfetched: *mut u32,
) -> Result<()>;
fn Skip(&self, celt: u32) -> Result<()>;
fn Reset(&self) -> Result<()>;
fn Clone(&self) -> Result<IEnumBackgroundCopyFiles>;
fn GetCount(&self) -> Result<u32>;
}
Required Methods§
fn Next( &self, celt: u32, rgelt: *mut Option<IBackgroundCopyFile>, pceltfetched: *mut u32, ) -> Result<()>
fn Skip(&self, celt: u32) -> Result<()>
fn Reset(&self) -> Result<()>
fn Clone(&self) -> Result<IEnumBackgroundCopyFiles>
fn GetCount(&self) -> Result<u32>
Object Safety§
This trait is not object safe.