pub struct DictCompSpec {
pub key: Arc<Program>,
pub val: Arc<Program>,
pub vars: Arc<[Arc<str>]>,
pub iter: Arc<Program>,
pub cond: Option<Arc<Program>>,
}Fields§
§key: Arc<Program>§val: Arc<Program>§vars: Arc<[Arc<str>]>§iter: Arc<Program>§cond: Option<Arc<Program>>Trait Implementations§
Source§impl Clone for DictCompSpec
impl Clone for DictCompSpec
Source§fn clone(&self) -> DictCompSpec
fn clone(&self) -> DictCompSpec
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 moreAuto Trait Implementations§
impl Freeze for DictCompSpec
impl RefUnwindSafe for DictCompSpec
impl Send for DictCompSpec
impl Sync for DictCompSpec
impl Unpin for DictCompSpec
impl UnsafeUnpin for DictCompSpec
impl UnwindSafe for DictCompSpec
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