Enum minetest_protocol::wire::types::PointedThing
source · pub enum PointedThing {
Nothing,
Node {
under_surface: v3s16,
above_surface: v3s16,
},
Object {
object_id: u16,
},
}
Variants§
Trait Implementations§
source§impl Clone for PointedThing
impl Clone for PointedThing
source§fn clone(&self) -> PointedThing
fn clone(&self) -> PointedThing
Returns a copy 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 PointedThing
impl Debug for PointedThing
source§impl Deserialize for PointedThing
impl Deserialize for PointedThing
fn deserialize(deser: &mut Deserializer<'_>) -> DeserializeResult<Self>
source§impl PartialEq<PointedThing> for PointedThing
impl PartialEq<PointedThing> for PointedThing
source§fn eq(&self, other: &PointedThing) -> bool
fn eq(&self, other: &PointedThing) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.