pub struct AttributeViewConverting<'a, 'b, B: BorrowedBuffer<'a> + ?Sized, T: PrimitiveType>where
'a: 'b,{ /* private fields */ }
Expand description
A view over a strongly typed point attribute that supports type conversion. This means that the
PointAttributeDataType
of the attribute does not have to match the type T
that this view returns.
For an explanation on how attribute type conversion works in pasture, see the conversion
module
Implementations§
Source§impl<'a, 'b, B: BorrowedBuffer<'a> + ?Sized, T: PrimitiveType> AttributeViewConverting<'a, 'b, B, T>
impl<'a, 'b, B: BorrowedBuffer<'a> + ?Sized, T: PrimitiveType> AttributeViewConverting<'a, 'b, B, T>
Trait Implementations§
Source§impl<'a, 'b, B: Debug + BorrowedBuffer<'a> + ?Sized, T: Debug + PrimitiveType> Debug for AttributeViewConverting<'a, 'b, B, T>where
'a: 'b,
impl<'a, 'b, B: Debug + BorrowedBuffer<'a> + ?Sized, T: Debug + PrimitiveType> Debug for AttributeViewConverting<'a, 'b, B, T>where
'a: 'b,
Source§impl<'a, 'b, B: BorrowedBuffer<'a> + ?Sized, T: PrimitiveType> IntoIterator for AttributeViewConverting<'a, 'b, B, T>
impl<'a, 'b, B: BorrowedBuffer<'a> + ?Sized, T: PrimitiveType> IntoIterator for AttributeViewConverting<'a, 'b, B, T>
Source§impl<'a, 'b, 'c, 'd, B1: BorrowedBuffer<'a> + ?Sized + 'a, B2: BorrowedBuffer<'c> + ?Sized + 'c, T: PrimitiveType + PartialEq> PartialEq<AttributeViewConverting<'c, 'd, B2, T>> for AttributeViewConverting<'a, 'b, B1, T>
impl<'a, 'b, 'c, 'd, B1: BorrowedBuffer<'a> + ?Sized + 'a, B2: BorrowedBuffer<'c> + ?Sized + 'c, T: PrimitiveType + PartialEq> PartialEq<AttributeViewConverting<'c, 'd, B2, T>> for AttributeViewConverting<'a, 'b, B1, T>
Source§fn eq(&self, other: &AttributeViewConverting<'c, 'd, B2, T>) -> bool
fn eq(&self, other: &AttributeViewConverting<'c, 'd, B2, T>) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl<'a, 'b, B: BorrowedBuffer<'a> + ?Sized + 'a, T: PrimitiveType + Eq> Eq for AttributeViewConverting<'a, 'b, B, T>
Auto Trait Implementations§
impl<'a, 'b, B, T> !Freeze for AttributeViewConverting<'a, 'b, B, T>
impl<'a, 'b, B, T> !RefUnwindSafe for AttributeViewConverting<'a, 'b, B, T>
impl<'a, 'b, B, T> Send for AttributeViewConverting<'a, 'b, B, T>
impl<'a, 'b, B, T> !Sync for AttributeViewConverting<'a, 'b, B, T>
impl<'a, 'b, B, T> Unpin for AttributeViewConverting<'a, 'b, B, T>where
B: ?Sized,
impl<'a, 'b, B, T> UnwindSafe for AttributeViewConverting<'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> 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.