pub struct WhileClause {
pub condition: Vec<CompleteCommand>,
pub body: Vec<CompleteCommand>,
pub redirects: Vec<Redirect>,
}Fields§
§condition: Vec<CompleteCommand>§body: Vec<CompleteCommand>§redirects: Vec<Redirect>Trait Implementations§
Source§impl Clone for WhileClause
impl Clone for WhileClause
Source§fn clone(&self) -> WhileClause
fn clone(&self) -> WhileClause
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 moreSource§impl Debug for WhileClause
impl Debug for WhileClause
Source§impl PartialEq for WhileClause
impl PartialEq for WhileClause
impl StructuralPartialEq for WhileClause
Auto Trait Implementations§
impl Freeze for WhileClause
impl RefUnwindSafe for WhileClause
impl Send for WhileClause
impl Sync for WhileClause
impl Unpin for WhileClause
impl UnsafeUnpin for WhileClause
impl UnwindSafe for WhileClause
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