pub trait ToCommandResponse: Default {
    // Required method
    fn create<T>(frames: Vec<T>, cmd: Command) -> Result<Option<Self>>
       where T: ToString + Debug + Default;
}

Required Methods§

source

fn create<T>(frames: Vec<T>, cmd: Command) -> Result<Option<Self>>where T: ToString + Debug + Default,

Implementors§