pub struct AttributeView<'a, 'b, B: BorrowedBuffer<'a> + ?Sized, T: PrimitiveType>where
'a: 'b,{ /* private fields */ }Expand description
A strongly typed view over attribute data of a point buffer. This allows accessing the data for a specific
attribute of a PointType using the strong type T instead of as raw memory (i.e. &[u8]). This type makes
no assumptions about the memory layout of the underlying buffer, so it only provides access to the attribute
data by value. Just as with the PointView type, you cannot create instances of AttributeView directly.
Instead, use the [BorrowedBuffer::view_attribute] function and its variations, which perform the necessary
type checking.
Implementations§
Source§impl<'a, 'b, B: BorrowedBuffer<'a> + ?Sized, T: PrimitiveType> AttributeView<'a, 'b, B, T>
impl<'a, 'b, B: BorrowedBuffer<'a> + ?Sized, T: PrimitiveType> AttributeView<'a, 'b, B, T>
Source§impl<'a, 'b, B: ColumnarBuffer<'a> + ?Sized, T: PrimitiveType> AttributeView<'a, 'b, B, T>where
'a: 'b,
impl<'a, 'b, B: ColumnarBuffer<'a> + ?Sized, T: PrimitiveType> AttributeView<'a, 'b, B, T>where
'a: 'b,
Trait Implementations§
Source§impl<'a, 'b, B: Clone + BorrowedBuffer<'a> + ?Sized, T: Clone + PrimitiveType> Clone for AttributeView<'a, 'b, B, T>where
'a: 'b,
impl<'a, 'b, B: Clone + BorrowedBuffer<'a> + ?Sized, T: Clone + PrimitiveType> Clone for AttributeView<'a, 'b, B, T>where
'a: 'b,
Source§fn clone(&self) -> AttributeView<'a, 'b, B, T>
fn clone(&self) -> AttributeView<'a, 'b, B, T>
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<'a, 'b, B: Debug + BorrowedBuffer<'a> + ?Sized, T: Debug + PrimitiveType> Debug for AttributeView<'a, 'b, B, T>where
'a: 'b,
impl<'a, 'b, B: Debug + BorrowedBuffer<'a> + ?Sized, T: Debug + PrimitiveType> Debug for AttributeView<'a, 'b, B, T>where
'a: 'b,
Source§impl<'a, 'b, B: BorrowedBuffer<'a> + ?Sized + 'a, T: PrimitiveType> IntoIterator for AttributeView<'a, 'b, B, T>
impl<'a, 'b, B: BorrowedBuffer<'a> + ?Sized + 'a, T: PrimitiveType> IntoIterator for AttributeView<'a, 'b, B, T>
Source§impl<'a, 'b, 'c, 'd, B1: BorrowedBuffer<'a> + ?Sized + 'a, B2: BorrowedBuffer<'c> + ?Sized + 'c, T: PrimitiveType + PartialEq> PartialEq<AttributeView<'c, 'd, B2, T>> for AttributeView<'a, 'b, B1, T>
impl<'a, 'b, 'c, 'd, B1: BorrowedBuffer<'a> + ?Sized + 'a, B2: BorrowedBuffer<'c> + ?Sized + 'c, T: PrimitiveType + PartialEq> PartialEq<AttributeView<'c, 'd, B2, T>> for AttributeView<'a, 'b, B1, T>
Source§fn eq(&self, other: &AttributeView<'c, 'd, B2, T>) -> bool
fn eq(&self, other: &AttributeView<'c, 'd, B2, T>) -> bool
Tests for
self and other values to be equal, and is used by ==.impl<'a, 'b, B: Copy + BorrowedBuffer<'a> + ?Sized, T: Copy + PrimitiveType> Copy for AttributeView<'a, 'b, B, T>where
'a: 'b,
impl<'a, 'b, B: BorrowedBuffer<'a> + ?Sized + 'a, T: PrimitiveType + Eq> Eq for AttributeView<'a, 'b, B, T>
Auto Trait Implementations§
impl<'a, 'b, B, T> Freeze for AttributeView<'a, 'b, B, T>where
B: ?Sized,
impl<'a, 'b, B, T> RefUnwindSafe for AttributeView<'a, 'b, B, T>
impl<'a, 'b, B, T> Send for AttributeView<'a, 'b, B, T>
impl<'a, 'b, B, T> Sync for AttributeView<'a, 'b, B, T>
impl<'a, 'b, B, T> Unpin for AttributeView<'a, 'b, B, T>where
B: ?Sized,
impl<'a, 'b, B, T> UnwindSafe for AttributeView<'a, 'b, B, T>
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.