Trait support::encoding::EncodingFormat
source · pub trait EncodingFormat {
// Required methods
fn into_java(str: String) -> Result<Vec<u8>>;
fn from_java(str: Vec<u8>) -> Result<String>;
}
Required Methods§
fn into_java(str: String) -> Result<Vec<u8>>
fn from_java(str: Vec<u8>) -> Result<String>
Object Safety§
This trait is not object safe.