pub trait IntermediateType {
    // Required methods
    fn from_json(json: Json) -> Self;
    fn from_image(img: Vec<u8>) -> Self;
    fn from_audio(audio: Vec<u8>) -> Self;
}
Expand description

The required interface used by CustomTypes::Intermediate.

Required Methods§

source

fn from_json(json: Json) -> Self

source

fn from_image(img: Vec<u8>) -> Self

source

fn from_audio(audio: Vec<u8>) -> Self

Object Safety§

This trait is not object safe.

Implementors§