pub struct LSystemRule {
pub from: char,
pub to: String,
}Fields§
§from: char§to: StringTrait Implementations§
Source§impl Clone for LSystemRule
impl Clone for LSystemRule
Source§fn clone(&self) -> LSystemRule
fn clone(&self) -> LSystemRule
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 LSystemRule
impl RefUnwindSafe for LSystemRule
impl Send for LSystemRule
impl Sync for LSystemRule
impl Unpin for LSystemRule
impl UnsafeUnpin for LSystemRule
impl UnwindSafe for LSystemRule
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