pub struct SetComprehension {
pub element: Box<Expression>,
pub variable: UnscopedVariable,
pub value: Box<Expression>,
pub location: Location,
}Expand description
An set comprehension
Fields§
§element: Box<Expression>§variable: UnscopedVariable§value: Box<Expression>§location: LocationTrait Implementations§
Source§impl Debug for SetComprehension
impl Debug for SetComprehension
Source§impl Display for SetComprehension
impl Display for SetComprehension
Source§impl From<SetComprehension> for Expression
impl From<SetComprehension> for Expression
Source§fn from(expr: SetComprehension) -> Expression
fn from(expr: SetComprehension) -> Expression
Converts to this type from the input type.
Source§impl PartialEq for SetComprehension
impl PartialEq for SetComprehension
impl Eq for SetComprehension
impl StructuralPartialEq for SetComprehension
Auto Trait Implementations§
impl Freeze for SetComprehension
impl RefUnwindSafe for SetComprehension
impl Send for SetComprehension
impl Sync for SetComprehension
impl Unpin for SetComprehension
impl UnwindSafe for SetComprehension
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