pub struct KeywordRandomizer { /* private fields */ }
Expand description
Struct for maintaining “sanity” across random generation, upon initialization it holds the
current runs definitions for what each keyword maps to. This keeps syntax consistent in a
single run, so variable declaration isn’t both var
and let
in the same runtime for example
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for KeywordRandomizer
impl RefUnwindSafe for KeywordRandomizer
impl Send for KeywordRandomizer
impl Sync for KeywordRandomizer
impl Unpin for KeywordRandomizer
impl UnwindSafe for KeywordRandomizer
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