pub struct MutationTableRow {
pub id: MutationId,
pub site: SiteId,
pub node: NodeId,
pub parent: MutationId,
pub time: Time,
pub derived_state: Option<Vec<u8>>,
pub metadata: Option<Vec<u8>>,
}
Expand description
Row of a MutationTable
Fields§
§id: MutationId
§site: SiteId
§node: NodeId
§parent: MutationId
§time: Time
§derived_state: Option<Vec<u8>>
§metadata: Option<Vec<u8>>
Trait Implementations§
Source§impl Debug for MutationTableRow
impl Debug for MutationTableRow
Source§impl PartialEq for MutationTableRow
impl PartialEq for MutationTableRow
Auto Trait Implementations§
impl Freeze for MutationTableRow
impl RefUnwindSafe for MutationTableRow
impl Send for MutationTableRow
impl Sync for MutationTableRow
impl Unpin for MutationTableRow
impl UnwindSafe for MutationTableRow
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