Skip to main content

GetWriteInternal

Trait GetWriteInternal 

Source
pub trait GetWriteInternal: Write {
    // Provided methods
    fn get_write_mut_internal(&mut self) -> &mut Self { ... }
    fn get_write_internal(&mut self) -> &mut Self { ... }
}

Provided Methods§

Source

fn get_write_mut_internal(&mut self) -> &mut Self

Source

fn get_write_internal(&mut self) -> &mut Self

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§

Source§

impl<W> GetWriteInternal for W
where W: Write + ?Sized,