pub struct MarkerDetection {
pub header: Header,
pub distance_min: f32,
pub distance_max: f32,
pub distance_max_id: f32,
pub view_direction: Quaternion,
pub fov_horizontal: f32,
pub fov_vertical: f32,
pub type_: String,
pub markers: Vec<Marker>,
}Fields§
§header: Header§distance_min: f32§distance_max: f32§distance_max_id: f32§view_direction: Quaternion§fov_horizontal: f32§fov_vertical: f32§type_: String§markers: Vec<Marker>Trait Implementations§
Source§impl Clone for MarkerDetection
impl Clone for MarkerDetection
Source§fn clone(&self) -> MarkerDetection
fn clone(&self) -> MarkerDetection
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 MarkerDetection
impl Debug for MarkerDetection
Source§impl Default for MarkerDetection
impl Default for MarkerDetection
Source§impl<'de> Deserialize<'de> for MarkerDetection
impl<'de> Deserialize<'de> for MarkerDetection
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 MarkerDetection
impl PartialEq for MarkerDetection
Source§impl Serialize for MarkerDetection
impl Serialize for MarkerDetection
impl Message for MarkerDetection
impl StructuralPartialEq for MarkerDetection
Auto Trait Implementations§
impl Freeze for MarkerDetection
impl RefUnwindSafe for MarkerDetection
impl Send for MarkerDetection
impl Sync for MarkerDetection
impl Unpin for MarkerDetection
impl UnwindSafe for MarkerDetection
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