pub struct LatestSchemaRow {
pub proxy: String,
pub upstream_url: String,
pub method: String,
pub payload: String,
pub captured_at: i64,
pub schema_hash: String,
}Expand description
A hydration-focused schema row. Adds proxy which the general
SchemaRow omits (it’s not useful for the status-display consumers
that call schema()). Used at startup to seed SchemaManager.
Fields§
§proxy: String§upstream_url: String§method: String§payload: String§captured_at: i64§schema_hash: StringTrait Implementations§
Source§impl Clone for LatestSchemaRow
impl Clone for LatestSchemaRow
Source§fn clone(&self) -> LatestSchemaRow
fn clone(&self) -> LatestSchemaRow
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 moreAuto Trait Implementations§
impl Freeze for LatestSchemaRow
impl RefUnwindSafe for LatestSchemaRow
impl Send for LatestSchemaRow
impl Sync for LatestSchemaRow
impl Unpin for LatestSchemaRow
impl UnsafeUnpin for LatestSchemaRow
impl UnwindSafe for LatestSchemaRow
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