Trait videocore_gencmd::gencmd::Command[][src]

pub trait Command<'a> {
    type Response;

    const COMMAND_STR: &'static str;

    fn parse_response(
        response: &'a str
    ) -> Result<Self::Response, GencmdCmdError>; }

Associated Types

Associated Constants

Required methods

Implementors