Skip to main content

IStream_ReadWriteTask

Trait IStream_ReadWriteTask 

Source
pub trait IStream_ReadWriteTask: SystemObject {
    // Provided methods
    fn is_read(self) -> bool { ... }
    fn set_is_read(self, value: bool) { ... }
    fn stream(self) -> Stream { ... }
    fn set_stream(self, value: Stream) { ... }
    fn buffer(self) -> Array<u8> { ... }
    fn set_buffer(self, value: Array<u8>) { ... }
    fn offset(self) -> i32 { ... }
    fn set_offset(self, value: i32) { ... }
    fn count(self) -> i32 { ... }
    fn set_count(self, value: i32) { ... }
}

Provided Methods§

Source

fn is_read(self) -> bool

Source

fn set_is_read(self, value: bool)

Source

fn stream(self) -> Stream

Source

fn set_stream(self, value: Stream)

Source

fn buffer(self) -> Array<u8>

Source

fn set_buffer(self, value: Array<u8>)

Source

fn offset(self) -> i32

Source

fn set_offset(self, value: i32)

Source

fn count(self) -> i32

Source

fn set_count(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§