pub struct PlaySpawnPaintingSpec {
pub entity_id: VarInt,
pub entity_uuid: UUID4,
pub motive: VarInt,
pub location: IntPosition,
pub direction: CardinalDirection,
}Fields§
§entity_id: VarInt§entity_uuid: UUID4§motive: VarInt§location: IntPosition§direction: CardinalDirectionTrait Implementations§
Source§impl Clone for PlaySpawnPaintingSpec
impl Clone for PlaySpawnPaintingSpec
Source§fn clone(&self) -> PlaySpawnPaintingSpec
fn clone(&self) -> PlaySpawnPaintingSpec
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 PlaySpawnPaintingSpec
impl Debug for PlaySpawnPaintingSpec
Source§impl Deserialize for PlaySpawnPaintingSpec
impl Deserialize for PlaySpawnPaintingSpec
fn mc_deserialize(_rest: &[u8]) -> DeserializeResult<'_, Self>
Source§impl From<(VarInt, UUID4, VarInt, IntPosition, CardinalDirection)> for PlaySpawnPaintingSpec
impl From<(VarInt, UUID4, VarInt, IntPosition, CardinalDirection)> for PlaySpawnPaintingSpec
Source§fn from(other: (VarInt, UUID4, VarInt, IntPosition, CardinalDirection)) -> Self
fn from(other: (VarInt, UUID4, VarInt, IntPosition, CardinalDirection)) -> Self
Converts to this type from the input type.
Source§impl From<PlaySpawnPaintingSpec> for (VarInt, UUID4, VarInt, IntPosition, CardinalDirection)
impl From<PlaySpawnPaintingSpec> for (VarInt, UUID4, VarInt, IntPosition, CardinalDirection)
Source§fn from(other: PlaySpawnPaintingSpec) -> Self
fn from(other: PlaySpawnPaintingSpec) -> Self
Converts to this type from the input type.
Source§impl PartialEq for PlaySpawnPaintingSpec
impl PartialEq for PlaySpawnPaintingSpec
Source§impl Serialize for PlaySpawnPaintingSpec
impl Serialize for PlaySpawnPaintingSpec
fn mc_serialize<S: Serializer>(&self, to: &mut S) -> SerializeResult
impl StructuralPartialEq for PlaySpawnPaintingSpec
Auto Trait Implementations§
impl Freeze for PlaySpawnPaintingSpec
impl RefUnwindSafe for PlaySpawnPaintingSpec
impl Send for PlaySpawnPaintingSpec
impl Sync for PlaySpawnPaintingSpec
impl Unpin for PlaySpawnPaintingSpec
impl UnwindSafe for PlaySpawnPaintingSpec
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