pub struct ImportExpression {
pub import_id: ImportId,
pub property_path: Option<Vec<PropertyKey>>,
pub call_arguments: Option<Box<Expression>>,
}
Fields§
§import_id: ImportId
§property_path: Option<Vec<PropertyKey>>
§call_arguments: Option<Box<Expression>>
Trait Implementations§
Source§impl Clone for ImportExpression
impl Clone for ImportExpression
Source§fn clone(&self) -> ImportExpression
fn clone(&self) -> ImportExpression
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 ImportExpression
impl Debug for ImportExpression
Source§impl PartialEq for ImportExpression
impl PartialEq for ImportExpression
impl StructuralPartialEq for ImportExpression
Auto Trait Implementations§
impl Freeze for ImportExpression
impl RefUnwindSafe for ImportExpression
impl Send for ImportExpression
impl Sync for ImportExpression
impl Unpin for ImportExpression
impl UnwindSafe for ImportExpression
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