pub enum TemplateProcessorList {
Empty,
Registry(Identifier),
OceanRuin {
biome_temp: OceanRuinBiomeTempData,
integrity: f32,
},
RuinedPortal {
vertical_placement: RuinedPortalPlacementData,
properties: RuinedPortalProperties,
},
}Expand description
Processors for template-backed non-jigsaw pieces.
Variants§
Empty
No processors.
Registry(Identifier)
Registry-backed vanilla processor list.
OceanRuin
Vanilla’s hardcoded ocean-ruin block-rot and archaeology processors.
Fields
§
biome_temp: OceanRuinBiomeTempDataWarm/cold ruin variant controls suspicious sand/gravel and archaeology loot.
RuinedPortal
Vanilla’s hardcoded ruined-portal processor sequence.
Fields
§
vertical_placement: RuinedPortalPlacementDataVertical placement controls lava replacement.
§
properties: RuinedPortalPropertiesRuined portal setup properties.
Trait Implementations§
Source§impl Clone for TemplateProcessorList
impl Clone for TemplateProcessorList
Source§fn clone(&self) -> TemplateProcessorList
fn clone(&self) -> TemplateProcessorList
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 moreSource§impl Debug for TemplateProcessorList
impl Debug for TemplateProcessorList
Source§impl PartialEq for TemplateProcessorList
impl PartialEq for TemplateProcessorList
impl StructuralPartialEq for TemplateProcessorList
Auto Trait Implementations§
impl Freeze for TemplateProcessorList
impl RefUnwindSafe for TemplateProcessorList
impl Send for TemplateProcessorList
impl Sync for TemplateProcessorList
impl Unpin for TemplateProcessorList
impl UnsafeUnpin for TemplateProcessorList
impl UnwindSafe for TemplateProcessorList
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreWraps this value in an
Arc<SyncMutex<>>