pub struct AsciiMetadata;
Expand description
Metadata
implementation for ascii files
In general there is no metadata in ascii files.
Trait Implementations§
Source§impl Clone for AsciiMetadata
impl Clone for AsciiMetadata
Source§fn clone(&self) -> AsciiMetadata
fn clone(&self) -> AsciiMetadata
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 AsciiMetadata
impl Debug for AsciiMetadata
Source§impl Default for AsciiMetadata
impl Default for AsciiMetadata
Source§fn default() -> AsciiMetadata
fn default() -> AsciiMetadata
Returns the “default value” for a type. Read more
Source§impl Display for AsciiMetadata
impl Display for AsciiMetadata
Source§impl Metadata for AsciiMetadata
impl Metadata for AsciiMetadata
Source§fn bounds(&self) -> Option<AABB<f64>>
fn bounds(&self) -> Option<AABB<f64>>
Returns the bounding box of the associated
Metadata
. Not every point cloud Metadata
will have
bounding box information readily available, in which case None
is returned.Source§fn number_of_points(&self) -> Option<usize>
fn number_of_points(&self) -> Option<usize>
Returns the number of points of the associated
Metadata
. Not every point cloud Metadata
will have
the number of points readily available, in which case None
is returned.Source§fn get_named_field(&self, _field_name: &str) -> Option<Box<dyn Any>>
fn get_named_field(&self, _field_name: &str) -> Option<Box<dyn Any>>
Returns the value of the metadata field named
field_name
, if it exists.Source§fn clone_into_box(&self) -> Box<dyn Metadata>
fn clone_into_box(&self) -> Box<dyn Metadata>
Clone the associated
Metadata
and put it into a Box
Auto Trait Implementations§
impl Freeze for AsciiMetadata
impl RefUnwindSafe for AsciiMetadata
impl Send for AsciiMetadata
impl Sync for AsciiMetadata
impl Unpin for AsciiMetadata
impl UnwindSafe for AsciiMetadata
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 moreSource§impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
Source§fn to_subset(&self) -> Option<SS>
fn to_subset(&self) -> Option<SS>
The inverse inclusion map: attempts to construct
self
from the equivalent element of its
superset. Read moreSource§fn is_in_subset(&self) -> bool
fn is_in_subset(&self) -> bool
Checks if
self
is actually part of its subset T
(and can be converted to it).Source§fn to_subset_unchecked(&self) -> SS
fn to_subset_unchecked(&self) -> SS
Use with care! Same as
self.to_subset
but without any property checks. Always succeeds.Source§fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
The inclusion map: converts
self
to the equivalent element of its superset.