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§
impl StructuralPartialEq for CodeError
Auto Trait Implementations§
impl Freeze for CodeError
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)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>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreCreates a shared type from an unshared type.