pub struct ContoursObservation {
pub contour_count: usize,
pub top_level_contour_count: usize,
pub top_level_contours: Vec<Contour>,
}Available on crate feature
contours only.Expand description
A dedicated VNContoursObservation wrapper.
Fields§
§contour_count: usize§top_level_contour_count: usize§top_level_contours: Vec<Contour>Implementations§
Source§impl ContoursObservation
impl ContoursObservation
pub fn into_top_level_contours(self) -> Vec<Contour>
Trait Implementations§
Source§impl Clone for ContoursObservation
impl Clone for ContoursObservation
Source§fn clone(&self) -> ContoursObservation
fn clone(&self) -> ContoursObservation
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ContoursObservation
impl Debug for ContoursObservation
Source§impl PartialEq for ContoursObservation
impl PartialEq for ContoursObservation
Source§fn eq(&self, other: &ContoursObservation) -> bool
fn eq(&self, other: &ContoursObservation) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ContoursObservation
Auto Trait Implementations§
impl Freeze for ContoursObservation
impl RefUnwindSafe for ContoursObservation
impl Send for ContoursObservation
impl Sync for ContoursObservation
impl Unpin for ContoursObservation
impl UnsafeUnpin for ContoursObservation
impl UnwindSafe for ContoursObservation
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