pub trait IFileStreamAsyncResult: IObject {
// Provided methods
fn state(self) -> IlInstance { ... }
fn set_state(self, value: IlInstance) { ... }
fn completed(self) -> bool { ... }
fn set_completed(self, value: bool) { ... }
fn completed_synch(self) -> bool { ... }
fn set_completed_synch(self, value: bool) { ... }
fn count(self) -> i32 { ... }
fn set_count(self, value: i32) { ... }
fn original_count(self) -> i32 { ... }
fn set_original_count(self, value: i32) { ... }
fn bytes_read(self) -> i32 { ... }
fn set_bytes_read(self, value: i32) { ... }
}Provided Methods§
fn state(self) -> IlInstance
fn set_state(self, value: IlInstance)
fn completed(self) -> bool
fn set_completed(self, value: bool)
fn completed_synch(self) -> bool
fn set_completed_synch(self, value: bool)
fn count(self) -> i32
fn set_count(self, value: i32)
fn original_count(self) -> i32
fn set_original_count(self, value: i32)
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.