Trait libktx_rs::stream::RWSeekable[][src]

pub trait RWSeekable: Read + Write + Seek {
    fn as_mut_dyn(&mut self) -> &mut dyn RWSeekable;
}
Expand description

Represents a Rust byte stream, i.e. something Read, Write and Seek.

Required methods

Upcasts self to a RWSeekable reference.

This is required for getting a fat pointer to self to be stored in the C-managed ktxStream.

Trait Implementations

Formats the value using the given formatter. Read more

Implementors