pub struct AnalyzeQueryResponseErrors {
pub line: Option<i32>,
pub column: Option<i32>,
pub character: Option<i32>,
pub message: Option<String>,
}
Expand description
AnalyzeQueryResponseErrors
Fields§
§line: Option<i32>
Error line
column: Option<i32>
Error column
character: Option<i32>
Error char
message: Option<String>
Error message
Implementations§
Trait Implementations§
Source§impl Clone for AnalyzeQueryResponseErrors
impl Clone for AnalyzeQueryResponseErrors
Source§fn clone(&self) -> AnalyzeQueryResponseErrors
fn clone(&self) -> AnalyzeQueryResponseErrors
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for AnalyzeQueryResponseErrors
impl Debug for AnalyzeQueryResponseErrors
Source§impl Default for AnalyzeQueryResponseErrors
impl Default for AnalyzeQueryResponseErrors
Source§fn default() -> AnalyzeQueryResponseErrors
fn default() -> AnalyzeQueryResponseErrors
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AnalyzeQueryResponseErrors
impl<'de> Deserialize<'de> for AnalyzeQueryResponseErrors
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for AnalyzeQueryResponseErrors
impl PartialEq for AnalyzeQueryResponseErrors
Source§fn eq(&self, other: &AnalyzeQueryResponseErrors) -> bool
fn eq(&self, other: &AnalyzeQueryResponseErrors) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for AnalyzeQueryResponseErrors
Auto Trait Implementations§
impl Freeze for AnalyzeQueryResponseErrors
impl RefUnwindSafe for AnalyzeQueryResponseErrors
impl Send for AnalyzeQueryResponseErrors
impl Sync for AnalyzeQueryResponseErrors
impl Unpin for AnalyzeQueryResponseErrors
impl UnwindSafe for AnalyzeQueryResponseErrors
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