pub unsafe trait BnStrCompatible {
    type Result: AsRef<[u8]>;

    fn into_bytes_with_nul(self) -> Self::Result;
}

Required Associated Types

Required Methods

Implementations on Foreign Types

Implementors