pub struct SchemaChangeRow {
pub upstream_url: String,
pub method: String,
pub change_type: String,
pub item_name: Option<String>,
pub old_hash: Option<String>,
pub new_hash: Option<String>,
pub detected_at: i64,
}Expand description
A schema change record from schema_changes.
Fields§
§upstream_url: String§method: String§change_type: String§item_name: Option<String>§old_hash: Option<String>§new_hash: Option<String>§detected_at: i64Trait Implementations§
Source§impl Clone for SchemaChangeRow
impl Clone for SchemaChangeRow
Source§fn clone(&self) -> SchemaChangeRow
fn clone(&self) -> SchemaChangeRow
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 SchemaChangeRow
impl Debug for SchemaChangeRow
Auto Trait Implementations§
impl Freeze for SchemaChangeRow
impl RefUnwindSafe for SchemaChangeRow
impl Send for SchemaChangeRow
impl Sync for SchemaChangeRow
impl Unpin for SchemaChangeRow
impl UnsafeUnpin for SchemaChangeRow
impl UnwindSafe for SchemaChangeRow
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