Struct aws_sdk_appsync::types::CodeError
source · #[non_exhaustive]pub struct CodeError {
pub error_type: Option<String>,
pub value: Option<String>,
pub location: Option<CodeErrorLocation>,
}
Expand description
Describes an AppSync error.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.error_type: Option<String>
The type of code error.
Examples include, but aren't limited to: LINT_ERROR
, PARSER_ERROR
.
value: Option<String>
A user presentable error.
Examples include, but aren't limited to: Parsing error: Unterminated string literal
.
location: Option<CodeErrorLocation>
The line, column, and span location of the error in the code.
Implementations§
source§impl CodeError
impl CodeError
sourcepub fn error_type(&self) -> Option<&str>
pub fn error_type(&self) -> Option<&str>
The type of code error.
Examples include, but aren't limited to: LINT_ERROR
, PARSER_ERROR
.
sourcepub fn value(&self) -> Option<&str>
pub fn value(&self) -> Option<&str>
A user presentable error.
Examples include, but aren't limited to: Parsing error: Unterminated string literal
.
sourcepub fn location(&self) -> Option<&CodeErrorLocation>
pub fn location(&self) -> Option<&CodeErrorLocation>
The line, column, and span location of the error in the code.
Trait Implementations§
source§impl PartialEq for CodeError
impl PartialEq for CodeError
impl StructuralPartialEq for CodeError
Auto Trait Implementations§
impl RefUnwindSafe for CodeError
impl Send for CodeError
impl Sync for CodeError
impl Unpin for CodeError
impl UnwindSafe for CodeError
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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Creates a shared type from an unshared type.