[][src]Struct hxgm30noise::common::Opts

pub struct Opts<'a> {
    pub inverted: bool,
    pub is_cave: bool,
    pub is_image: bool,
    pub is_ascii: bool,
    pub ascii_mapper: ASCIIMapper,
    pub levels: LevelsOpts,
    pub log_level: &'a str,
    pub noise_type: &'a str,
    pub output: &'a str,
    pub seed: u32,
    pub res: Resolution,
    pub res_str: &'a str,
    pub threshold_cutoff: f64,
    pub threshold_enabled: bool,
    pub tiled: bool,
    pub turbulence: bool,
}

Fields

inverted: boolis_cave: boolis_image: boolis_ascii: boolascii_mapper: ASCIIMapperlevels: LevelsOptslog_level: &'a strnoise_type: &'a stroutput: &'a strseed: u32res: Resolutionres_str: &'a strthreshold_cutoff: f64threshold_enabled: booltiled: boolturbulence: bool

Trait Implementations

impl<'a> Clone for Opts<'a>[src]

impl<'a> Debug for Opts<'a>[src]

impl<'a> Default for Opts<'a>[src]

Auto Trait Implementations

impl<'a> RefUnwindSafe for Opts<'a>

impl<'a> Send for Opts<'a>

impl<'a> Sync for Opts<'a>

impl<'a> Unpin for Opts<'a>

impl<'a> UnwindSafe for Opts<'a>

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> SetParameter for T

impl<T> SetParameter for T

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.