pub enum StartHeight {
Constant(i32),
Uniform {
min: i32,
max: i32,
},
}Expand description
Start height configuration used by currently-generated jigsaw structures.
Variants§
Trait Implementations§
Source§impl Clone for StartHeight
impl Clone for StartHeight
Source§fn clone(&self) -> StartHeight
fn clone(&self) -> StartHeight
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 StartHeight
impl RefUnwindSafe for StartHeight
impl Send for StartHeight
impl Sync for StartHeight
impl Unpin for StartHeight
impl UnsafeUnpin for StartHeight
impl UnwindSafe for StartHeight
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