pub struct ClassBodyDeclList {
pub brace_span: (Span, Span),
pub declarations: Vec<ClassBodyDecl>,
}Expand description
Class body: { members }.
Fields§
§brace_span: (Span, Span)§declarations: Vec<ClassBodyDecl>Trait Implementations§
Source§impl Clone for ClassBodyDeclList
impl Clone for ClassBodyDeclList
Source§fn clone(&self) -> ClassBodyDeclList
fn clone(&self) -> ClassBodyDeclList
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 ClassBodyDeclList
impl Debug for ClassBodyDeclList
impl Eq for ClassBodyDeclList
Source§impl Hash for ClassBodyDeclList
impl Hash for ClassBodyDeclList
Source§impl PartialEq for ClassBodyDeclList
impl PartialEq for ClassBodyDeclList
Source§fn eq(&self, other: &ClassBodyDeclList) -> bool
fn eq(&self, other: &ClassBodyDeclList) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ClassBodyDeclList
Auto Trait Implementations§
impl Freeze for ClassBodyDeclList
impl RefUnwindSafe for ClassBodyDeclList
impl Send for ClassBodyDeclList
impl Sync for ClassBodyDeclList
impl Unpin for ClassBodyDeclList
impl UnsafeUnpin for ClassBodyDeclList
impl UnwindSafe for ClassBodyDeclList
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