pub struct SuffixedExpr {
pub primary: Box<Expr>,
pub suffixes: Vec<Suffix>,
}
Fields§
§primary: Box<Expr>
§suffixes: Vec<Suffix>
Implementations§
Source§impl SuffixedExpr
impl SuffixedExpr
pub fn has_multi_ret(&self) -> bool
Trait Implementations§
Source§impl Clone for SuffixedExpr
impl Clone for SuffixedExpr
Source§fn clone(&self) -> SuffixedExpr
fn clone(&self) -> SuffixedExpr
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 SuffixedExpr
impl Debug for SuffixedExpr
Source§impl PartialEq for SuffixedExpr
impl PartialEq for SuffixedExpr
impl StructuralPartialEq for SuffixedExpr
Auto Trait Implementations§
impl Freeze for SuffixedExpr
impl RefUnwindSafe for SuffixedExpr
impl Send for SuffixedExpr
impl Sync for SuffixedExpr
impl Unpin for SuffixedExpr
impl UnwindSafe for SuffixedExpr
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