pub struct ShowAnnotationEvent {Show 14 fields
pub world_pos_x: f32,
pub world_pos_y: f32,
pub world_pos_z: f32,
pub world_normal_x: f32,
pub world_normal_y: f32,
pub world_normal_z: f32,
pub id: u32,
pub text: MaybeUtf8String,
pub lifetime: f32,
pub visibility_bit_field: u32,
pub follow_ent_index: u32,
pub show_distance: bool,
pub play_sound: MaybeUtf8String,
pub show_effect: bool,
}
Fields§
§world_pos_x: f32
§world_pos_y: f32
§world_pos_z: f32
§world_normal_x: f32
§world_normal_y: f32
§world_normal_z: f32
§id: u32
§text: MaybeUtf8String
§lifetime: f32
§visibility_bit_field: u32
§follow_ent_index: u32
§show_distance: bool
§play_sound: MaybeUtf8String
§show_effect: bool
Trait Implementations§
Source§impl Clone for ShowAnnotationEvent
impl Clone for ShowAnnotationEvent
Source§fn clone(&self) -> ShowAnnotationEvent
fn clone(&self) -> ShowAnnotationEvent
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for ShowAnnotationEvent
impl Debug for ShowAnnotationEvent
Source§impl<'de> Deserialize<'de> for ShowAnnotationEvent
impl<'de> Deserialize<'de> for ShowAnnotationEvent
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for ShowAnnotationEvent
impl PartialEq for ShowAnnotationEvent
Source§impl Serialize for ShowAnnotationEvent
impl Serialize for ShowAnnotationEvent
impl StructuralPartialEq for ShowAnnotationEvent
Auto Trait Implementations§
impl Freeze for ShowAnnotationEvent
impl RefUnwindSafe for ShowAnnotationEvent
impl Send for ShowAnnotationEvent
impl Sync for ShowAnnotationEvent
impl Unpin for ShowAnnotationEvent
impl UnwindSafe for ShowAnnotationEvent
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,
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 more