pub struct QueryHit {
pub seq: u64,
pub timestamp_secs: i64,
pub verb: String,
pub actor_email: String,
pub operation_id: Option<String>,
pub thread: Option<String>,
pub symbols: Vec<String>,
pub signal_kinds: Vec<String>,
pub change_id: Option<String>,
}Fields§
§seq: u64§timestamp_secs: i64§verb: String§actor_email: String§operation_id: Option<String>§thread: Option<String>§symbols: Vec<String>§signal_kinds: Vec<String>§change_id: Option<String>Trait Implementations§
impl Eq for QueryHit
Source§impl JsonSchema for QueryHit
impl JsonSchema for QueryHit
Source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Returns a string that uniquely identifies the schema produced by this type. Read more
Source§fn json_schema(generator: &mut SchemaGenerator) -> Schema
fn json_schema(generator: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
Source§fn inline_schema() -> bool
fn inline_schema() -> bool
Whether JSON Schemas generated for this type should be included directly in parent schemas,
rather than being re-used where possible using the
$ref keyword. Read moreimpl StructuralPartialEq for QueryHit
Auto Trait Implementations§
impl Freeze for QueryHit
impl RefUnwindSafe for QueryHit
impl Send for QueryHit
impl Sync for QueryHit
impl Unpin for QueryHit
impl UnsafeUnpin for QueryHit
impl UnwindSafe for QueryHit
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