pub enum ConfiguredCarverKind {
Cave(CaveCarverConfiguration),
NetherCave(CaveCarverConfiguration),
Canyon(CanyonCarverConfiguration),
}Expand description
Which carver algorithm a ConfiguredCarver uses, along with its
fully-resolved configuration.
Variants§
Cave(CaveCarverConfiguration)
Branching cave tunnels (CaveWorldCarver).
NetherCave(CaveCarverConfiguration)
Nether variant of caves (NetherWorldCarver) — no aquifer lookups,
and a fixed lava-or-cave-air substance decision.
Canyon(CanyonCarverConfiguration)
Long narrow ravines (CanyonWorldCarver).
Trait Implementations§
Source§impl Clone for ConfiguredCarverKind
impl Clone for ConfiguredCarverKind
Source§fn clone(&self) -> ConfiguredCarverKind
fn clone(&self) -> ConfiguredCarverKind
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for ConfiguredCarverKind
impl RefUnwindSafe for ConfiguredCarverKind
impl Send for ConfiguredCarverKind
impl Sync for ConfiguredCarverKind
impl Unpin for ConfiguredCarverKind
impl UnsafeUnpin for ConfiguredCarverKind
impl UnwindSafe for ConfiguredCarverKind
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