pub struct DictComprehension {
pub l_brace: Token,
pub r_brace: Token,
pub kv: Box<KeyValue>,
pub generators: Vec<(Identifier, Expr)>,
pub guard: Option<Box<Expr>>,
}Fields§
§l_brace: Token§r_brace: Token§kv: Box<KeyValue>§generators: Vec<(Identifier, Expr)>§guard: Option<Box<Expr>>Implementations§
Trait Implementations§
Source§impl Clone for DictComprehension
impl Clone for DictComprehension
Source§fn clone(&self) -> DictComprehension
fn clone(&self) -> DictComprehension
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 DictComprehension
impl Debug for DictComprehension
Source§impl Display for DictComprehension
impl Display for DictComprehension
Source§impl Hash for DictComprehension
impl Hash for DictComprehension
Source§impl Locational for DictComprehension
impl Locational for DictComprehension
Source§impl NestedDisplay for DictComprehension
impl NestedDisplay for DictComprehension
Source§impl PartialEq for DictComprehension
impl PartialEq for DictComprehension
Source§impl Traversable for DictComprehension
impl Traversable for DictComprehension
impl Eq for DictComprehension
impl StructuralPartialEq for DictComprehension
Auto Trait Implementations§
impl Freeze for DictComprehension
impl RefUnwindSafe for DictComprehension
impl Send for DictComprehension
impl Sync for DictComprehension
impl Unpin for DictComprehension
impl UnwindSafe for DictComprehension
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