pub enum CombineSource {
Grid(Grid<Tile>),
Algorithm {
name: String,
seed: Option<u64>,
params: Option<Params>,
},
Saved(String),
}Expand description
Source for combine steps.
Variants§
Trait Implementations§
Source§impl Clone for CombineSource
impl Clone for CombineSource
Source§fn clone(&self) -> CombineSource
fn clone(&self) -> CombineSource
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 moreAuto Trait Implementations§
impl Freeze for CombineSource
impl RefUnwindSafe for CombineSource
impl Send for CombineSource
impl Sync for CombineSource
impl Unpin for CombineSource
impl UnwindSafe for CombineSource
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