Skip to main content

IVersusServerData

Trait IVersusServerData 

Source
pub trait IVersusServerData: IObject {
    // Provided methods
    fn m_buffer(self) -> Array<u8> { ... }
    fn set_m_buffer(self, value: Array<u8>) { ... }
    fn m_stream(self) -> Stream_2 { ... }
    fn set_m_stream(self, value: Stream_2) { ... }
    fn m_is_empty(self) -> bool { ... }
    fn set_m_is_empty(self, value: bool) { ... }
}

Provided Methods§

Source

fn m_buffer(self) -> Array<u8>

Source

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

Source

fn m_stream(self) -> Stream_2

Source

fn set_m_stream(self, value: Stream_2)

Source

fn m_is_empty(self) -> bool

Source

fn set_m_is_empty(self, value: bool)

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§