Skip to main content

IFileStreamAsyncResult

Trait IFileStreamAsyncResult 

Source
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§

Source

fn state(self) -> IlInstance

Source

fn set_state(self, value: IlInstance)

Source

fn completed(self) -> bool

Source

fn set_completed(self, value: bool)

Source

fn completed_synch(self) -> bool

Source

fn set_completed_synch(self, value: bool)

Source

fn count(self) -> i32

Source

fn set_count(self, value: i32)

Source

fn original_count(self) -> i32

Source

fn set_original_count(self, value: i32)

Source

fn bytes_read(self) -> i32

Source

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.

Implementors§