pub enum SelectionContentType {
GlobalIds,
PedigreeIds,
Indices,
Frustum,
Thresholds,
Blocks,
}Expand description
Type of content in a selection node.
Variants§
GlobalIds
Selection by global IDs.
PedigreeIds
Selection by pedigree IDs.
Indices
Selection by indices (point or cell indices).
Frustum
Selection by frustum (6 planes).
Thresholds
Selection by value range on a named array.
Blocks
Selection by block index (for MultiBlock).
Trait Implementations§
Source§impl Clone for SelectionContentType
impl Clone for SelectionContentType
Source§fn clone(&self) -> SelectionContentType
fn clone(&self) -> SelectionContentType
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 SelectionContentType
impl Debug for SelectionContentType
Source§impl PartialEq for SelectionContentType
impl PartialEq for SelectionContentType
impl Copy for SelectionContentType
impl Eq for SelectionContentType
impl StructuralPartialEq for SelectionContentType
Auto Trait Implementations§
impl Freeze for SelectionContentType
impl RefUnwindSafe for SelectionContentType
impl Send for SelectionContentType
impl Sync for SelectionContentType
impl Unpin for SelectionContentType
impl UnsafeUnpin for SelectionContentType
impl UnwindSafe for SelectionContentType
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 more