pub trait WithNull: Clone {
    fn with_null(&mut self) -> &String;
}
Expand description

Returns self as a null-terminated String. Implemented only for String.

Required Methods

If not \0 at the end, it will be added.

Implementations on Foreign Types

Implementors