pub struct ZshWhile {
pub cond: Box<ZshProgram>,
pub body: Box<ZshProgram>,
pub until: bool,
}Expand description
While/Until loop
Fields§
§cond: Box<ZshProgram>§body: Box<ZshProgram>§until: boolTrait Implementations§
Source§impl<'de> Deserialize<'de> for ZshWhile
impl<'de> Deserialize<'de> for ZshWhile
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for ZshWhile
impl RefUnwindSafe for ZshWhile
impl Send for ZshWhile
impl Sync for ZshWhile
impl Unpin for ZshWhile
impl UnsafeUnpin for ZshWhile
impl UnwindSafe for ZshWhile
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