pub trait ICapabilitySbyteMethods: ICapabilitySbyte {
// Provided methods
fn ctor(self, value: impl Into<i8>) { ... }
fn add(self, i: impl Into<i32>, v: impl Into<i8>) { ... }
fn is_zero(self) -> bool { ... }
fn write_to_stream(self, stream: impl Into<Stream_2>, v: impl Into<i8>) { ... }
fn read_from_stream(self, stream: impl Into<Stream_2>) -> i8 { ... }
}Provided Methods§
Sourcefn write_to_stream(self, stream: impl Into<Stream_2>, v: impl Into<i8>)
fn write_to_stream(self, stream: impl Into<Stream_2>, v: impl Into<i8>)
WriteToStream(crate::app::stream_2::Stream_2, i8) overload
Sourcefn read_from_stream(self, stream: impl Into<Stream_2>) -> i8
fn read_from_stream(self, stream: impl Into<Stream_2>) -> i8
ReadFromStream(crate::app::stream_2::Stream_2) overload
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§
impl<__T: ICapabilitySbyte> ICapabilitySbyteMethods for __T
Available on crate feature
app-capabilitysbyte only.