[][src]Struct worldgen::noisemap::Seed

pub struct Seed {
    pub value: u64,
}

Sets the seed that is used for generating the noise.

Fields

value: u64

Implementations

impl Seed[src]

pub fn of_value(value: u64) -> Seed[src]

Sets the seed to an exact integer value.

pub fn of<T: Hash>(value: T) -> Seed[src]

Sets the seed to the hash of whatever is provided.

Trait Implementations

impl Clone for Seed[src]

impl Copy for Seed[src]

impl Debug for Seed[src]

impl Default for Seed[src]

impl Eq for Seed[src]

impl PartialEq<Seed> for Seed[src]

impl Property for Seed[src]

impl StructuralEq for Seed[src]

impl StructuralPartialEq for Seed[src]

Auto Trait Implementations

impl RefUnwindSafe for Seed

impl Send for Seed

impl Sync for Seed

impl Unpin for Seed

impl UnwindSafe for Seed

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> 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.