pub trait IMemoryBufferReference_Impl: Sized + IClosable_Impl {
    // Required methods
    fn Capacity(&self) -> Result<u32>;
    fn Closed(
        &self,
        handler: Option<&TypedEventHandler<IMemoryBufferReference, IInspectable>>
    ) -> Result<EventRegistrationToken>;
    fn RemoveClosed(&self, cookie: &EventRegistrationToken) -> Result<()>;
}

Required Methods§

Object Safety§

This trait is not object safe.

Implementors§