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