pub struct ZshSublist {
pub pipe: ZshPipe,
pub next: Option<(SublistOp, Box<ZshSublist>)>,
pub flags: SublistFlags,
}Expand description
A sublist is pipelines connected by && or ||
Fields§
§pipe: ZshPipe§next: Option<(SublistOp, Box<ZshSublist>)>§flags: SublistFlagsTrait Implementations§
Source§impl Clone for ZshSublist
impl Clone for ZshSublist
Source§fn clone(&self) -> ZshSublist
fn clone(&self) -> ZshSublist
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ZshSublist
impl Debug for ZshSublist
Source§impl<'de> Deserialize<'de> for ZshSublist
impl<'de> Deserialize<'de> for ZshSublist
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 ZshSublist
impl RefUnwindSafe for ZshSublist
impl Send for ZshSublist
impl Sync for ZshSublist
impl Unpin for ZshSublist
impl UnsafeUnpin for ZshSublist
impl UnwindSafe for ZshSublist
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