pub struct TableChangeset {
pub info: TableInfo,
pub rows: Vec<ChangesetRow>,
}Expand description
All row changes for a single table within a changeset.
Fields§
§info: TableInfo§rows: Vec<ChangesetRow>Implementations§
Source§impl TableChangeset
impl TableChangeset
Sourcepub fn encode_changeset(&self, out: &mut Vec<u8>)
pub fn encode_changeset(&self, out: &mut Vec<u8>)
Encode this table section in changeset format.
Sourcepub fn encode_patchset(&self, out: &mut Vec<u8>)
pub fn encode_patchset(&self, out: &mut Vec<u8>)
Encode this table section in patchset format.
Trait Implementations§
Source§impl Clone for TableChangeset
impl Clone for TableChangeset
Source§fn clone(&self) -> TableChangeset
fn clone(&self) -> TableChangeset
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 TableChangeset
impl Debug for TableChangeset
Source§impl PartialEq for TableChangeset
impl PartialEq for TableChangeset
impl StructuralPartialEq for TableChangeset
Auto Trait Implementations§
impl Freeze for TableChangeset
impl RefUnwindSafe for TableChangeset
impl Send for TableChangeset
impl Sync for TableChangeset
impl Unpin for TableChangeset
impl UnsafeUnpin for TableChangeset
impl UnwindSafe for TableChangeset
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