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