pub enum TransformedGrid<'dest, S: Sample> {
Single(MutableSubgrid<'dest, S>),
Merged {
leader: MutableSubgrid<'dest, S>,
members: Vec<TransformedGrid<'dest, S>>,
},
}
Variants§
Single(MutableSubgrid<'dest, S>)
Merged
Trait Implementations§
Source§impl<'dest, S: Sample> From<MutableSubgrid<'dest, S>> for TransformedGrid<'dest, S>
impl<'dest, S: Sample> From<MutableSubgrid<'dest, S>> for TransformedGrid<'dest, S>
Source§fn from(value: MutableSubgrid<'dest, S>) -> Self
fn from(value: MutableSubgrid<'dest, S>) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl<'dest, S> Freeze for TransformedGrid<'dest, S>
impl<'dest, S> RefUnwindSafe for TransformedGrid<'dest, S>where
S: RefUnwindSafe,
impl<'dest, S> Send for TransformedGrid<'dest, S>
impl<'dest, S> Sync for TransformedGrid<'dest, S>
impl<'dest, S> Unpin for TransformedGrid<'dest, S>
impl<'dest, S> !UnwindSafe for TransformedGrid<'dest, S>
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