pub enum Grouping<N: Node> {
By(Vec<Transform<N>>),
StartingWith(Vec<Transform<N>>),
EndingWith(Vec<Transform<N>>),
Adjacent(Vec<Transform<N>>),
}
Expand description
Determine how a collection is to be divided into groups. This value would normally be inside an Option. A None value for the option means that the collection is not to be grouped.
Variants§
By(Vec<Transform<N>>)
StartingWith(Vec<Transform<N>>)
EndingWith(Vec<Transform<N>>)
Adjacent(Vec<Transform<N>>)
Trait Implementations§
Auto Trait Implementations§
impl<N> Freeze for Grouping<N>
impl<N> RefUnwindSafe for Grouping<N>where
N: RefUnwindSafe,
impl<N> !Send for Grouping<N>
impl<N> !Sync for Grouping<N>
impl<N> Unpin for Grouping<N>where
N: Unpin,
impl<N> UnwindSafe for Grouping<N>where
N: UnwindSafe,
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