pub enum OceanMonumentChildPieceKind {
EntryRoom {
room: OceanMonumentRoomData,
},
CoreRoom,
DoubleXRoom {
west: OceanMonumentRoomData,
east: OceanMonumentRoomData,
},
DoubleXYRoom {
west: OceanMonumentRoomData,
east: OceanMonumentRoomData,
west_up: OceanMonumentRoomData,
east_up: OceanMonumentRoomData,
},
DoubleYRoom {
room: OceanMonumentRoomData,
above: OceanMonumentRoomData,
},
DoubleYZRoom {
south: OceanMonumentRoomData,
north: OceanMonumentRoomData,
south_up: OceanMonumentRoomData,
north_up: OceanMonumentRoomData,
},
DoubleZRoom {
south: OceanMonumentRoomData,
north: OceanMonumentRoomData,
},
SimpleRoom {
room: OceanMonumentRoomData,
main_design: i32,
},
SimpleTopRoom {
room: OceanMonumentRoomData,
},
WingRoom {
main_design: i32,
},
Penthouse,
}Expand description
Variant-specific data for monument child pieces.
Variants§
EntryRoom
OceanMonumentEntryRoom.
Fields
§
room: OceanMonumentRoomDataSource room snapshot.
CoreRoom
OceanMonumentCoreRoom.
DoubleXRoom
OceanMonumentDoubleXRoom.
Fields
§
west: OceanMonumentRoomDataWestern room snapshot.
§
east: OceanMonumentRoomDataEastern room snapshot.
DoubleXYRoom
OceanMonumentDoubleXYRoom.
Fields
§
west: OceanMonumentRoomDataLower western room.
§
east: OceanMonumentRoomDataLower eastern room.
§
west_up: OceanMonumentRoomDataUpper western room.
§
east_up: OceanMonumentRoomDataUpper eastern room.
DoubleYRoom
OceanMonumentDoubleYRoom.
DoubleYZRoom
OceanMonumentDoubleYZRoom.
Fields
§
south: OceanMonumentRoomDataSouthern lower room.
§
north: OceanMonumentRoomDataNorthern lower room.
§
south_up: OceanMonumentRoomDataSouthern upper room.
§
north_up: OceanMonumentRoomDataNorthern upper room.
DoubleZRoom
OceanMonumentDoubleZRoom.
SimpleRoom
OceanMonumentSimpleRoom.
SimpleTopRoom
OceanMonumentSimpleTopRoom.
Fields
§
room: OceanMonumentRoomDataRoom snapshot.
WingRoom
OceanMonumentWingRoom.
Penthouse
OceanMonumentPenthouse.
Trait Implementations§
Source§impl Clone for OceanMonumentChildPieceKind
impl Clone for OceanMonumentChildPieceKind
Source§fn clone(&self) -> OceanMonumentChildPieceKind
fn clone(&self) -> OceanMonumentChildPieceKind
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 OceanMonumentChildPieceKind
impl Debug for OceanMonumentChildPieceKind
impl StructuralPartialEq for OceanMonumentChildPieceKind
Auto Trait Implementations§
impl Freeze for OceanMonumentChildPieceKind
impl RefUnwindSafe for OceanMonumentChildPieceKind
impl Send for OceanMonumentChildPieceKind
impl Sync for OceanMonumentChildPieceKind
impl Unpin for OceanMonumentChildPieceKind
impl UnsafeUnpin for OceanMonumentChildPieceKind
impl UnwindSafe for OceanMonumentChildPieceKind
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<>>