Trait Write

Source
pub unsafe trait Write: Write { }
Expand description

This trait is empty declaration of ::core::fmt::Write to be used with newer_type::implement.

§Example

#[implement(newer_type_std::fmt::Write)]
struct MyStruct {
    slot: String
}

§Safety

should be implemented by newer_type::implement

Implementors§