pub struct ForCond {
pub expr: Expression,
/* private fields */
}
Expand description
A filter expression. Elements for which the condition evaluates to true
will be evaluated as
normal, while if false
the element will be skipped.
Fields§
§expr: Expression
The filter expression.
Implementations§
Trait Implementations§
Source§impl From<Expression> for ForCond
impl From<Expression> for ForCond
Source§fn from(value: Expression) -> Self
fn from(value: Expression) -> Self
Converts to this type from the input type.
impl Eq for ForCond
Auto Trait Implementations§
impl Freeze for ForCond
impl RefUnwindSafe for ForCond
impl Send for ForCond
impl Sync for ForCond
impl Unpin for ForCond
impl UnwindSafe for ForCond
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