pub trait IRangeException_Impl: Sized {
    // Required methods
    fn GetClosedRangeStart(
        &self,
        pbclosedrangestart: *mut u8,
        pcbidsize: *mut u32
    ) -> Result<()>;
    fn GetClosedRangeEnd(
        &self,
        pbclosedrangeend: *mut u8,
        pcbidsize: *mut u32
    ) -> Result<()>;
    fn GetClockVector(
        &self,
        riid: *const GUID,
        ppunk: *mut *mut c_void
    ) -> Result<()>;
}

Required Methods§

fn GetClosedRangeStart( &self, pbclosedrangestart: *mut u8, pcbidsize: *mut u32 ) -> Result<()>

fn GetClosedRangeEnd( &self, pbclosedrangeend: *mut u8, pcbidsize: *mut u32 ) -> Result<()>

fn GetClockVector( &self, riid: *const GUID, ppunk: *mut *mut c_void ) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§