pub struct BoundaryResult {
pub indices: Vec<usize>,
pub boundary: PointCloud,
}Expand description
Result of boundary detection.
Fields§
§indices: Vec<usize>Indices of the boundary points in the input cloud.
boundary: PointCloudSub-cloud containing only the boundary points (schema preserved).
Trait Implementations§
Source§impl Clone for BoundaryResult
impl Clone for BoundaryResult
Source§fn clone(&self) -> BoundaryResult
fn clone(&self) -> BoundaryResult
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 BoundaryResult
impl Debug for BoundaryResult
Source§impl PartialEq for BoundaryResult
impl PartialEq for BoundaryResult
impl StructuralPartialEq for BoundaryResult
Auto Trait Implementations§
impl Freeze for BoundaryResult
impl RefUnwindSafe for BoundaryResult
impl Send for BoundaryResult
impl Sync for BoundaryResult
impl Unpin for BoundaryResult
impl UnsafeUnpin for BoundaryResult
impl UnwindSafe for BoundaryResult
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