pub struct StarredDictElement<'a> {
pub value: Expression<'a>,
pub comma: Option<Comma<'a>>,
pub whitespace_before_value: ParenthesizableWhitespace<'a>,
}
Fields§
§value: Expression<'a>
§comma: Option<Comma<'a>>
§whitespace_before_value: ParenthesizableWhitespace<'a>
Trait Implementations§
Source§impl<'a> Clone for StarredDictElement<'a>
impl<'a> Clone for StarredDictElement<'a>
Source§fn clone(&self) -> StarredDictElement<'a>
fn clone(&self) -> StarredDictElement<'a>
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<'a> Codegen<'a> for StarredDictElement<'a>
impl<'a> Codegen<'a> for StarredDictElement<'a>
fn codegen(&self, state: &mut CodegenState<'a>)
Source§impl<'a> Debug for StarredDictElement<'a>
impl<'a> Debug for StarredDictElement<'a>
Source§impl<'a> PartialEq for StarredDictElement<'a>
impl<'a> PartialEq for StarredDictElement<'a>
impl<'a> Eq for StarredDictElement<'a>
impl<'a> StructuralPartialEq for StarredDictElement<'a>
Auto Trait Implementations§
impl<'a> Freeze for StarredDictElement<'a>
impl<'a> RefUnwindSafe for StarredDictElement<'a>
impl<'a> Send for StarredDictElement<'a>
impl<'a> Sync for StarredDictElement<'a>
impl<'a> Unpin for StarredDictElement<'a>
impl<'a> UnwindSafe for StarredDictElement<'a>
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