pub trait IStream_SynchronousAsyncResult: IObject {
// Provided methods
fn state_object(self) -> IlInstance { ... }
fn set_state_object(self, value: IlInstance) { ... }
fn is_write(self) -> bool { ... }
fn set_is_write(self, value: bool) { ... }
fn end_xxx_called(self) -> bool { ... }
fn set_end_xxx_called(self, value: bool) { ... }
fn bytes_read(self) -> i32 { ... }
fn set_bytes_read(self, value: i32) { ... }
}Provided Methods§
fn state_object(self) -> IlInstance
fn set_state_object(self, value: IlInstance)
fn is_write(self) -> bool
fn set_is_write(self, value: bool)
fn end_xxx_called(self) -> bool
fn set_end_xxx_called(self, value: bool)
fn bytes_read(self) -> i32
fn set_bytes_read(self, value: i32)
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.