pub struct QueryLintOutput {
pub status: QueryLintStatus,
pub schema_source: QueryLintSchemaSource,
pub query_path: String,
pub queries_processed: usize,
pub errors: usize,
pub warnings: usize,
pub infos: usize,
pub results: Vec<QueryLintQueryResult>,
pub findings: Vec<QueryLintFinding>,
}Fields§
§status: QueryLintStatus§schema_source: QueryLintSchemaSource§query_path: String§queries_processed: usize§errors: usize§warnings: usize§infos: usize§results: Vec<QueryLintQueryResult>§findings: Vec<QueryLintFinding>Trait Implementations§
Source§impl Clone for QueryLintOutput
impl Clone for QueryLintOutput
Source§fn clone(&self) -> QueryLintOutput
fn clone(&self) -> QueryLintOutput
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 QueryLintOutput
impl Debug for QueryLintOutput
Source§impl PartialEq for QueryLintOutput
impl PartialEq for QueryLintOutput
Source§impl Serialize for QueryLintOutput
impl Serialize for QueryLintOutput
impl Eq for QueryLintOutput
impl StructuralPartialEq for QueryLintOutput
Auto Trait Implementations§
impl Freeze for QueryLintOutput
impl RefUnwindSafe for QueryLintOutput
impl Send for QueryLintOutput
impl Sync for QueryLintOutput
impl Unpin for QueryLintOutput
impl UnsafeUnpin for QueryLintOutput
impl UnwindSafe for QueryLintOutput
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