IUseCaseRequest

Trait IUseCaseRequest 

Source
pub trait IUseCaseRequest: Sized {
    // Required methods
    fn build(src: &[&str]) -> Result<Self, String>;
    fn help() -> String;
}

Required Methods§

Source

fn build(src: &[&str]) -> Result<Self, String>

Source

fn help() -> String

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementations on Foreign Types§

Source§

impl IUseCaseRequest for ()

Source§

fn build(src: &[&str]) -> Result<Self, String>

Source§

fn help() -> String

Implementors§