pub struct UntilCommand {
pub condition: Vec<Command>,
pub body: Vec<Command>,
pub span: Span,
}Expand description
Until loop.
Fields§
§condition: Vec<Command>§body: Vec<Command>§span: SpanSource span of this command
Trait Implementations§
Source§impl Clone for UntilCommand
impl Clone for UntilCommand
Source§fn clone(&self) -> UntilCommand
fn clone(&self) -> UntilCommand
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 UntilCommand
impl RefUnwindSafe for UntilCommand
impl Send for UntilCommand
impl Sync for UntilCommand
impl Unpin for UntilCommand
impl UnwindSafe for UntilCommand
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