pub enum ArrayLength {
Constant {
value: u32,
},
Random {
min: u32,
max: u32,
},
}Variants§
Trait Implementations§
Source§impl Clone for ArrayLength
impl Clone for ArrayLength
Source§fn clone(&self) -> ArrayLength
fn clone(&self) -> ArrayLength
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 ArrayLength
impl RefUnwindSafe for ArrayLength
impl Send for ArrayLength
impl Sync for ArrayLength
impl Unpin for ArrayLength
impl UnwindSafe for ArrayLength
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