pub struct ExportDeclaration {
pub declaration: Box<Statement>,
}
Expand description
Export declaration
Fields§
§declaration: Box<Statement>
Trait Implementations§
Source§impl Clone for ExportDeclaration
impl Clone for ExportDeclaration
Source§fn clone(&self) -> ExportDeclaration
fn clone(&self) -> ExportDeclaration
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 ExportDeclaration
impl Debug for ExportDeclaration
Source§impl<'de> Deserialize<'de> for ExportDeclaration
impl<'de> Deserialize<'de> for ExportDeclaration
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 ExportDeclaration
impl RefUnwindSafe for ExportDeclaration
impl Send for ExportDeclaration
impl Sync for ExportDeclaration
impl Unpin for ExportDeclaration
impl UnwindSafe for ExportDeclaration
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