#[repr(C)]pub struct BiomeNoise {
pub climate: [DoublePerlinNoise; 6],
pub oct: [PerlinNoise; 46],
pub sp: *mut Spline,
pub ss: SplineStack,
pub nptype: c_int,
pub mc: c_int,
}Fields§
§climate: [DoublePerlinNoise; 6]§oct: [PerlinNoise; 46]§sp: *mut Spline§ss: SplineStack§nptype: c_int§mc: c_intTrait Implementations§
Source§impl Clone for BiomeNoise
impl Clone for BiomeNoise
Source§fn clone(&self) -> BiomeNoise
fn clone(&self) -> BiomeNoise
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for BiomeNoise
impl Debug for BiomeNoise
impl Copy for BiomeNoise
Auto Trait Implementations§
impl Freeze for BiomeNoise
impl RefUnwindSafe for BiomeNoise
impl !Send for BiomeNoise
impl !Sync for BiomeNoise
impl Unpin for BiomeNoise
impl UnwindSafe for BiomeNoise
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more