pub struct ESExprConstructor<'a> {
pub name: CowStr<'a>,
pub args: ConstructorArgs<'a>,
pub kwargs: KeywordArgs<'a>,
}Expand description
A ESExpr constructor expression
Fields§
§name: CowStr<'a>The name of the constructor.
args: ConstructorArgs<'a>The constructor’s positional arguments.
kwargs: KeywordArgs<'a>The constructor’s keyword arguments.
Trait Implementations§
Source§impl<'a> Clone for ESExprConstructor<'a>
impl<'a> Clone for ESExprConstructor<'a>
Source§fn clone(&self) -> ESExprConstructor<'a>
fn clone(&self) -> ESExprConstructor<'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> Debug for ESExprConstructor<'a>
impl<'a> Debug for ESExprConstructor<'a>
Source§impl<'a> PartialEq for ESExprConstructor<'a>
impl<'a> PartialEq for ESExprConstructor<'a>
impl<'a> Eq for ESExprConstructor<'a>
impl<'a> StructuralPartialEq for ESExprConstructor<'a>
Auto Trait Implementations§
impl<'a> Freeze for ESExprConstructor<'a>
impl<'a> RefUnwindSafe for ESExprConstructor<'a>
impl<'a> Send for ESExprConstructor<'a>
impl<'a> Sync for ESExprConstructor<'a>
impl<'a> Unpin for ESExprConstructor<'a>
impl<'a> UnwindSafe for ESExprConstructor<'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