rawcmd 0.6.3

Command-line application framework.
Documentation
/// Structure holding external resource data.
#[derive(Debug, Clone, PartialEq)]
pub struct Resource {
    name: String,
    description: Option<String>,
}

/// Structure implementation.
impl Resource {

    /// Returns name.
    pub fn name(&self) -> &String {
        &self.name
    }

    /// Returns description.
    pub fn description(&self) -> &Option<String> {
        &self.description
    }
}

/// Flag structure implementation.
impl Resource {

    // Returns new instance.
    pub fn with_name<S: Into<String>>(name: S) -> Self {
        Self {
            name: name.into(),
            description: None,
        }
    }

    /// Sets description.
    pub fn with_description<S: Into<String>>(mut self, val: S) -> Self {
        self.description = Some(val.into());
        self
    }
}