pub struct FaceEdgeIndex(/* private fields */);
Expand description
Define index type
Implementations§
Source§impl FaceEdgeIndex
impl FaceEdgeIndex
pub fn into_inner(self) -> usize
Trait Implementations§
Source§impl Add<FaceEdgeIndex> for usize
impl Add<FaceEdgeIndex> for usize
Source§type Output = FaceEdgeIndex
type Output = FaceEdgeIndex
The resulting type after applying the
+
operator.Source§fn add(self, rhs: FaceEdgeIndex) -> FaceEdgeIndex
fn add(self, rhs: FaceEdgeIndex) -> FaceEdgeIndex
Performs the
+
operation. Read moreSource§impl Add<usize> for FaceEdgeIndex
impl Add<usize> for FaceEdgeIndex
Source§type Output = FaceEdgeIndex
type Output = FaceEdgeIndex
The resulting type after applying the
+
operator.Source§impl Add for FaceEdgeIndex
impl Add for FaceEdgeIndex
Source§type Output = FaceEdgeIndex
type Output = FaceEdgeIndex
The resulting type after applying the
+
operator.Source§fn add(self, rhs: FaceEdgeIndex) -> FaceEdgeIndex
fn add(self, rhs: FaceEdgeIndex) -> FaceEdgeIndex
Performs the
+
operation. Read moreSource§impl<M: FaceEdgeAttrib> AttribIndex<M> for FaceEdgeIndex
impl<M: FaceEdgeAttrib> AttribIndex<M> for FaceEdgeIndex
Source§fn attrib_size(mesh: &M) -> usize
fn attrib_size(mesh: &M) -> usize
Get the size of the attribute at the appropriate mesh location determined by
I
.Source§fn attrib_dict(mesh: &M) -> &AttribDict<Self>
fn attrib_dict(mesh: &M) -> &AttribDict<Self>
Read only access to the attribute dictionary.
Source§fn attrib_dict_mut(mesh: &mut M) -> &mut AttribDict<Self>
fn attrib_dict_mut(mesh: &mut M) -> &mut AttribDict<Self>
Read and write access to the attribute dictionary.
Source§fn attrib_dict_and_cache_mut(
mesh: &mut M,
) -> (&mut AttribDict<Self>, Option<&mut AttribValueCache>)
fn attrib_dict_and_cache_mut( mesh: &mut M, ) -> (&mut AttribDict<Self>, Option<&mut AttribValueCache>)
Read and write access to the attribute dictionary as well as an optional cache for indirect
attribute values.
Source§impl Clone for FaceEdgeIndex
impl Clone for FaceEdgeIndex
Source§fn clone(&self) -> FaceEdgeIndex
fn clone(&self) -> FaceEdgeIndex
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 FaceEdgeIndex
impl Debug for FaceEdgeIndex
Source§impl Div<usize> for FaceEdgeIndex
impl Div<usize> for FaceEdgeIndex
Source§type Output = FaceEdgeIndex
type Output = FaceEdgeIndex
The resulting type after applying the
/
operator.Source§impl From<FaceEdgeIndex> for Index
impl From<FaceEdgeIndex> for Index
Source§fn from(i: FaceEdgeIndex) -> Self
fn from(i: FaceEdgeIndex) -> Self
Converts to this type from the input type.
Source§impl From<FaceEdgeIndex> for usize
impl From<FaceEdgeIndex> for usize
Source§fn from(i: FaceEdgeIndex) -> usize
fn from(i: FaceEdgeIndex) -> usize
Converts to this type from the input type.
Source§impl From<Index> for FaceEdgeIndex
impl From<Index> for FaceEdgeIndex
Source§impl From<usize> for FaceEdgeIndex
impl From<usize> for FaceEdgeIndex
Source§impl Hash for FaceEdgeIndex
impl Hash for FaceEdgeIndex
Source§impl Mul<FaceEdgeIndex> for usize
impl Mul<FaceEdgeIndex> for usize
Source§type Output = FaceEdgeIndex
type Output = FaceEdgeIndex
The resulting type after applying the
*
operator.Source§fn mul(self, rhs: FaceEdgeIndex) -> FaceEdgeIndex
fn mul(self, rhs: FaceEdgeIndex) -> FaceEdgeIndex
Performs the
*
operation. Read moreSource§impl Mul<usize> for FaceEdgeIndex
impl Mul<usize> for FaceEdgeIndex
Source§type Output = FaceEdgeIndex
type Output = FaceEdgeIndex
The resulting type after applying the
*
operator.Source§impl Ord for FaceEdgeIndex
impl Ord for FaceEdgeIndex
Source§fn cmp(&self, other: &FaceEdgeIndex) -> Ordering
fn cmp(&self, other: &FaceEdgeIndex) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for FaceEdgeIndex
impl PartialEq for FaceEdgeIndex
Source§impl PartialOrd for FaceEdgeIndex
impl PartialOrd for FaceEdgeIndex
Source§impl Rem<usize> for FaceEdgeIndex
impl Rem<usize> for FaceEdgeIndex
Source§type Output = FaceEdgeIndex
type Output = FaceEdgeIndex
The resulting type after applying the
%
operator.Source§impl Sub<FaceEdgeIndex> for usize
impl Sub<FaceEdgeIndex> for usize
Source§type Output = FaceEdgeIndex
type Output = FaceEdgeIndex
The resulting type after applying the
-
operator.Source§fn sub(self, rhs: FaceEdgeIndex) -> FaceEdgeIndex
fn sub(self, rhs: FaceEdgeIndex) -> FaceEdgeIndex
Performs the
-
operation. Read moreSource§impl Sub<usize> for FaceEdgeIndex
impl Sub<usize> for FaceEdgeIndex
Source§type Output = FaceEdgeIndex
type Output = FaceEdgeIndex
The resulting type after applying the
-
operator.Source§impl Sub for FaceEdgeIndex
impl Sub for FaceEdgeIndex
Source§type Output = FaceEdgeIndex
type Output = FaceEdgeIndex
The resulting type after applying the
-
operator.Source§fn sub(self, rhs: FaceEdgeIndex) -> FaceEdgeIndex
fn sub(self, rhs: FaceEdgeIndex) -> FaceEdgeIndex
Performs the
-
operation. Read moreSource§impl TopoIndex<usize> for FaceEdgeIndex
impl TopoIndex<usize> for FaceEdgeIndex
impl Copy for FaceEdgeIndex
impl ElementIndex<usize> for FaceEdgeIndex
impl Eq for FaceEdgeIndex
impl StructuralPartialEq for FaceEdgeIndex
Auto Trait Implementations§
impl Freeze for FaceEdgeIndex
impl RefUnwindSafe for FaceEdgeIndex
impl Send for FaceEdgeIndex
impl Sync for FaceEdgeIndex
impl Unpin for FaceEdgeIndex
impl UnwindSafe for FaceEdgeIndex
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> CloneBytes for Twhere
T: Clone + 'static,
impl<T> CloneBytes for Twhere
T: Clone + 'static,
unsafe fn clone_bytes(src: &[MaybeUninit<u8>]) -> Box<[MaybeUninit<u8>]>
unsafe fn clone_from_bytes(dst: &mut [MaybeUninit<u8>], src: &[MaybeUninit<u8>])
unsafe fn clone_into_raw_bytes( src: &[MaybeUninit<u8>], dst: &mut [MaybeUninit<u8>], )
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> DebugBytes for Twhere
T: Debug + 'static,
impl<T> DebugBytes for Twhere
T: Debug + 'static,
Source§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
Source§fn into_any(self: Box<T>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
Converts
Box<dyn Trait>
(where Trait: Downcast
) to Box<dyn Any>
, which can then be
downcast
into Box<dyn ConcreteType>
where ConcreteType
implements Trait
.Source§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Converts
Rc<Trait>
(where Trait: Downcast
) to Rc<Any>
, which can then be further
downcast
into Rc<ConcreteType>
where ConcreteType
implements Trait
.Source§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
Converts
&Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &Any
’s vtable from &Trait
’s.Source§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
Converts
&mut Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &mut Any
’s vtable from &mut Trait
’s.Source§impl<T> DowncastSend for T
impl<T> DowncastSend for T
Source§impl<T> DowncastSync for T
impl<T> DowncastSync for T
Source§impl<T> DropBytes for Twhere
T: 'static,
impl<T> DropBytes for Twhere
T: 'static,
unsafe fn drop_bytes(bytes: &mut [MaybeUninit<u8>])
Source§impl<'a, S, I> Get<'a, I> for Swhere
I: GetIndex<'a, S>,
impl<'a, S, I> Get<'a, I> for Swhere
I: GetIndex<'a, S>,
type Output = <I as GetIndex<'a, S>>::Output
fn get(&self, idx: I) -> Option<<I as GetIndex<'a, S>>::Output>
Source§fn at(&self, idx: I) -> Self::Output
fn at(&self, idx: I) -> Self::Output
Return a value at the given index. This is provided as the checked
version of
get
that will panic if the equivalent get
call is None
,
which typically means that the given index is out of bounds. Read moreSource§unsafe fn at_unchecked(&self, idx: I) -> Self::Output
unsafe fn at_unchecked(&self, idx: I) -> Self::Output
Return a value at the given index. Read more
Source§impl<T> HashBytes for Twhere
T: Hash + 'static,
impl<T> HashBytes for Twhere
T: Hash + 'static,
unsafe fn hash_bytes(bytes: &[MaybeUninit<u8>], state: &mut dyn Hasher)
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<S, I> Isolate<I> for Swhere
I: IsolateIndex<S>,
impl<S, I> Isolate<I> for Swhere
I: IsolateIndex<S>,
Source§impl<T> PartialEqBytes for Twhere
T: PartialEq + 'static,
impl<T> PartialEqBytes for Twhere
T: PartialEq + 'static,
unsafe fn eq_bytes(a: &[MaybeUninit<u8>], b: &[MaybeUninit<u8>]) -> bool
Source§impl<T> Pointable for T
impl<T> Pointable for T
Source§impl<T, N> PushArrayToVec<N> for T
impl<T, N> PushArrayToVec<N> for T
Source§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.