Struct solstice_2d::PerlinTextureSettings
source · [−]pub struct PerlinTextureSettings {
pub seed: i32,
pub width: usize,
pub height: usize,
pub period: u32,
pub levels: u32,
pub attenuation: NotNan<f32>,
pub color: bool,
}Fields
seed: i32width: usizeheight: usizeperiod: u32levels: u32attenuation: NotNan<f32>color: boolTrait Implementations
sourceimpl Clone for PerlinTextureSettings
impl Clone for PerlinTextureSettings
sourcefn clone(&self) -> PerlinTextureSettings
fn clone(&self) -> PerlinTextureSettings
Returns a copy of the value. Read more
1.0.0 · sourceconst fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl Debug for PerlinTextureSettings
impl Debug for PerlinTextureSettings
sourceimpl Default for PerlinTextureSettings
impl Default for PerlinTextureSettings
sourcefn default() -> PerlinTextureSettings
fn default() -> PerlinTextureSettings
Returns the “default value” for a type. Read more
sourceimpl Hash for PerlinTextureSettings
impl Hash for PerlinTextureSettings
sourceimpl Ord for PerlinTextureSettings
impl Ord for PerlinTextureSettings
sourcefn cmp(&self, other: &PerlinTextureSettings) -> Ordering
fn cmp(&self, other: &PerlinTextureSettings) -> Ordering
1.21.0 · sourceconst fn max(self, other: Self) -> Self
const fn max(self, other: Self) -> Self
Compares and returns the maximum of two values. Read more
1.21.0 · sourceconst fn min(self, other: Self) -> Self
const fn min(self, other: Self) -> Self
Compares and returns the minimum of two values. Read more
1.50.0 · sourceconst fn clamp(self, min: Self, max: Self) -> Selfwhere
Self: PartialOrd<Self>,
const fn clamp(self, min: Self, max: Self) -> Selfwhere
Self: PartialOrd<Self>,
Restrict a value to a certain interval. Read more
sourceimpl PartialEq<PerlinTextureSettings> for PerlinTextureSettings
impl PartialEq<PerlinTextureSettings> for PerlinTextureSettings
sourcefn eq(&self, other: &PerlinTextureSettings) -> bool
fn eq(&self, other: &PerlinTextureSettings) -> bool
sourceimpl PartialOrd<PerlinTextureSettings> for PerlinTextureSettings
impl PartialOrd<PerlinTextureSettings> for PerlinTextureSettings
sourcefn partial_cmp(&self, other: &PerlinTextureSettings) -> Option<Ordering>
fn partial_cmp(&self, other: &PerlinTextureSettings) -> Option<Ordering>
1.0.0 · sourceconst fn le(&self, other: &Rhs) -> bool
const fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self and other) and is used by the <=
operator. Read moreimpl Copy for PerlinTextureSettings
impl Eq for PerlinTextureSettings
impl StructuralEq for PerlinTextureSettings
impl StructuralPartialEq for PerlinTextureSettings
Auto Trait Implementations
impl RefUnwindSafe for PerlinTextureSettings
impl Send for PerlinTextureSettings
impl Sync for PerlinTextureSettings
impl Unpin for PerlinTextureSettings
impl UnwindSafe for PerlinTextureSettings
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
impl<T> Pointable for T
impl<T> Pointable for T
impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
fn to_subset(&self) -> Option<SS>
fn to_subset(&self) -> Option<SS>
The inverse inclusion map: attempts to construct
self from the equivalent element of its
superset. Read morefn is_in_subset(&self) -> bool
fn is_in_subset(&self) -> bool
Checks if
self is actually part of its subset T (and can be converted to it).fn to_subset_unchecked(&self) -> SS
fn to_subset_unchecked(&self) -> SS
Use with care! Same as
self.to_subset but without any property checks. Always succeeds.fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
The inclusion map: converts
self to the equivalent element of its superset.