pub struct QueryLintQueryResult {
pub name: String,
pub kind: QueryLintQueryKind,
pub status: QueryLintStatus,
pub warnings: Vec<String>,
pub error: Option<String>,
}Fields§
§name: String§kind: QueryLintQueryKind§status: QueryLintStatus§warnings: Vec<String>§error: Option<String>Trait Implementations§
Source§impl Clone for QueryLintQueryResult
impl Clone for QueryLintQueryResult
Source§fn clone(&self) -> QueryLintQueryResult
fn clone(&self) -> QueryLintQueryResult
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 QueryLintQueryResult
impl Debug for QueryLintQueryResult
Source§impl PartialEq for QueryLintQueryResult
impl PartialEq for QueryLintQueryResult
Source§fn eq(&self, other: &QueryLintQueryResult) -> bool
fn eq(&self, other: &QueryLintQueryResult) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for QueryLintQueryResult
impl Serialize for QueryLintQueryResult
impl Eq for QueryLintQueryResult
impl StructuralPartialEq for QueryLintQueryResult
Auto Trait Implementations§
impl Freeze for QueryLintQueryResult
impl RefUnwindSafe for QueryLintQueryResult
impl Send for QueryLintQueryResult
impl Sync for QueryLintQueryResult
impl Unpin for QueryLintQueryResult
impl UnsafeUnpin for QueryLintQueryResult
impl UnwindSafe for QueryLintQueryResult
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