pub struct SchemaMigrationBoundaryRow {
pub line: usize,
pub event_id: EventId,
pub event_hash: String,
}Expand description
One observed schema_migration.v1_to_v2 boundary row.
Fields§
§line: usize1-based line number in the JSONL file.
event_id: EventIdBoundary event id.
event_hash: StringBoundary event hash as stored on disk.
Trait Implementations§
Source§impl Clone for SchemaMigrationBoundaryRow
impl Clone for SchemaMigrationBoundaryRow
Source§fn clone(&self) -> SchemaMigrationBoundaryRow
fn clone(&self) -> SchemaMigrationBoundaryRow
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 SchemaMigrationBoundaryRow
impl Debug for SchemaMigrationBoundaryRow
Source§impl<'de> Deserialize<'de> for SchemaMigrationBoundaryRow
impl<'de> Deserialize<'de> for SchemaMigrationBoundaryRow
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for SchemaMigrationBoundaryRow
impl PartialEq for SchemaMigrationBoundaryRow
Source§fn eq(&self, other: &SchemaMigrationBoundaryRow) -> bool
fn eq(&self, other: &SchemaMigrationBoundaryRow) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for SchemaMigrationBoundaryRow
impl StructuralPartialEq for SchemaMigrationBoundaryRow
Auto Trait Implementations§
impl Freeze for SchemaMigrationBoundaryRow
impl RefUnwindSafe for SchemaMigrationBoundaryRow
impl Send for SchemaMigrationBoundaryRow
impl Sync for SchemaMigrationBoundaryRow
impl Unpin for SchemaMigrationBoundaryRow
impl UnsafeUnpin for SchemaMigrationBoundaryRow
impl UnwindSafe for SchemaMigrationBoundaryRow
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