pub struct AstEventDecl {
pub name: String,
pub params: Vec<AstEventParam>,
pub span: Option<Span>,
}Fields§
§name: String§params: Vec<AstEventParam>§span: Option<Span>Trait Implementations§
Source§impl Clone for AstEventDecl
impl Clone for AstEventDecl
Source§fn clone(&self) -> AstEventDecl
fn clone(&self) -> AstEventDecl
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 AstEventDecl
impl Debug for AstEventDecl
Source§impl PartialEq for AstEventDecl
impl PartialEq for AstEventDecl
impl StructuralPartialEq for AstEventDecl
Auto Trait Implementations§
impl Freeze for AstEventDecl
impl RefUnwindSafe for AstEventDecl
impl Send for AstEventDecl
impl Sync for AstEventDecl
impl Unpin for AstEventDecl
impl UnsafeUnpin for AstEventDecl
impl UnwindSafe for AstEventDecl
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