pub struct DeclareExportDeclaration {
pub base: BaseNode,
pub declaration: Option<Box<Value>>,
pub specifiers: Option<Vec<Value>>,
pub source: Option<StringLiteral>,
pub default: Option<bool>,
}Fields§
§base: BaseNode§declaration: Option<Box<Value>>§specifiers: Option<Vec<Value>>§source: Option<StringLiteral>§default: Option<bool>Trait Implementations§
Source§impl Clone for DeclareExportDeclaration
impl Clone for DeclareExportDeclaration
Source§fn clone(&self) -> DeclareExportDeclaration
fn clone(&self) -> DeclareExportDeclaration
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 DeclareExportDeclaration
impl Debug for DeclareExportDeclaration
Source§impl<'de> Deserialize<'de> for DeclareExportDeclaration
impl<'de> Deserialize<'de> for DeclareExportDeclaration
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for DeclareExportDeclaration
impl RefUnwindSafe for DeclareExportDeclaration
impl Send for DeclareExportDeclaration
impl Sync for DeclareExportDeclaration
impl Unpin for DeclareExportDeclaration
impl UnsafeUnpin for DeclareExportDeclaration
impl UnwindSafe for DeclareExportDeclaration
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