pub struct SetComprehension {
pub l_brace: Token,
pub r_brace: Token,
pub layout: Option<Box<Expr>>,
pub generators: Vec<(Identifier, Expr)>,
pub guard: Option<Box<Expr>>,
}Fields§
§l_brace: Token§r_brace: Token§layout: Option<Box<Expr>>§generators: Vec<(Identifier, Expr)>§guard: Option<Box<Expr>>Implementations§
Trait Implementations§
Source§impl Clone for SetComprehension
impl Clone for SetComprehension
Source§fn clone(&self) -> SetComprehension
fn clone(&self) -> SetComprehension
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 SetComprehension
impl Debug for SetComprehension
Source§impl Display for SetComprehension
impl Display for SetComprehension
Source§impl Hash for SetComprehension
impl Hash for SetComprehension
Source§impl Locational for SetComprehension
impl Locational for SetComprehension
Source§impl NestedDisplay for SetComprehension
impl NestedDisplay for SetComprehension
Source§impl PartialEq for SetComprehension
impl PartialEq for SetComprehension
Source§impl Traversable for SetComprehension
impl Traversable 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