pub struct Exprs<E> {
pub first: OrsExpr<E>,
pub tail: Vec<OrsExpr<E>>,
}Expand description
A set of expressions with at least one item.
Fields§
§first: OrsExpr<E>The first expression
tail: Vec<OrsExpr<E>>The rest of the other expressions in the set.
Implementations§
Trait Implementations§
Source§impl<'a, E> IntoIterator for &'a Exprs<E>
impl<'a, E> IntoIterator for &'a Exprs<E>
Source§impl<E> IntoIterator for Exprs<E>
impl<E> IntoIterator for Exprs<E>
impl<E: Eq> Eq for Exprs<E>
impl<E> StructuralPartialEq for Exprs<E>
Auto Trait Implementations§
impl<E> Freeze for Exprs<E>where
E: Freeze,
impl<E> RefUnwindSafe for Exprs<E>where
E: RefUnwindSafe,
impl<E> Send for Exprs<E>where
E: Send,
impl<E> Sync for Exprs<E>where
E: Sync,
impl<E> Unpin for Exprs<E>where
E: Unpin,
impl<E> UnwindSafe for Exprs<E>where
E: UnwindSafe,
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