pub struct SchemaStatusRow {
pub upstream_url: String,
pub status: String,
pub server_name: Option<String>,
pub server_version: Option<String>,
pub protocol_version: Option<String>,
pub capabilities: Vec<String>,
pub methods_captured: Vec<String>,
pub last_captured_at: Option<i64>,
}Expand description
Computed schema status for a given upstream.
Fields§
§upstream_url: String§status: String“unknown”, “partial”, “complete”, “stale”
server_name: Option<String>§server_version: Option<String>§protocol_version: Option<String>§capabilities: Vec<String>§methods_captured: Vec<String>§last_captured_at: Option<i64>Trait Implementations§
Source§impl Clone for SchemaStatusRow
impl Clone for SchemaStatusRow
Source§fn clone(&self) -> SchemaStatusRow
fn clone(&self) -> SchemaStatusRow
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 SchemaStatusRow
impl Debug for SchemaStatusRow
Auto Trait Implementations§
impl Freeze for SchemaStatusRow
impl RefUnwindSafe for SchemaStatusRow
impl Send for SchemaStatusRow
impl Sync for SchemaStatusRow
impl Unpin for SchemaStatusRow
impl UnsafeUnpin for SchemaStatusRow
impl UnwindSafe for SchemaStatusRow
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