Trait IPBDA_Services_Impl
pub trait IPBDA_Services_Impl: IUnknownImpl {
// Required methods
fn Initialize(&self, size: u32, pbuffer: *const u8) -> Result<()>;
fn GetCountOfRecords(&self) -> Result<u32>;
fn GetRecordByIndex(&self, dwrecordindex: u32) -> Result<u64>;
}
Required Methods§
fn Initialize(&self, size: u32, pbuffer: *const u8) -> Result<()>
fn GetCountOfRecords(&self) -> Result<u32>
fn GetRecordByIndex(&self, dwrecordindex: u32) -> Result<u64>
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.