Trait arma_rs::FromArma[][src]

pub trait FromArma: Sized {
    fn from_arma(s: String) -> Result<Self, String>;
}
Expand description

A trait for converting a value from Arma to a Rust value.

Required methods

Converts a value from Arma to a Rust value.

Errors

Will return an error if the value cannot be converted.

Implementations on Foreign Types

Implementors