pub struct RecordStmt {
pub schema: String,
pub from: Option<String>,
pub fields: Vec<FieldAssign>,
pub span: SourceSpan,
}Fields§
§schema: String§from: Option<String>§fields: Vec<FieldAssign>§span: SourceSpanTrait Implementations§
Source§impl Clone for RecordStmt
impl Clone for RecordStmt
Source§fn clone(&self) -> RecordStmt
fn clone(&self) -> RecordStmt
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 RecordStmt
impl Debug for RecordStmt
impl Eq for RecordStmt
Source§impl PartialEq for RecordStmt
impl PartialEq for RecordStmt
impl StructuralPartialEq for RecordStmt
Auto Trait Implementations§
impl Freeze for RecordStmt
impl RefUnwindSafe for RecordStmt
impl Send for RecordStmt
impl Sync for RecordStmt
impl Unpin for RecordStmt
impl UnsafeUnpin for RecordStmt
impl UnwindSafe for RecordStmt
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