pub struct PoiBinding {
pub poi_id: String,
pub position: [f32; 3],
pub interaction_radius: f32,
pub property_tag: Option<String>,
}Expand description
Binds a POI definition to a zone location.
Fields§
§poi_id: String§position: [f32; 3]§interaction_radius: f32§property_tag: Option<String>Trait Implementations§
Source§impl Clone for PoiBinding
impl Clone for PoiBinding
Source§fn clone(&self) -> PoiBinding
fn clone(&self) -> PoiBinding
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 PoiBinding
impl Debug for PoiBinding
Source§impl<'de> Deserialize<'de> for PoiBinding
impl<'de> Deserialize<'de> for PoiBinding
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
Auto Trait Implementations§
impl Freeze for PoiBinding
impl RefUnwindSafe for PoiBinding
impl Send for PoiBinding
impl Sync for PoiBinding
impl Unpin for PoiBinding
impl UnsafeUnpin for PoiBinding
impl UnwindSafe for PoiBinding
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