pub struct AppsyncResponse { /* private fields */ }
Expand description
Response structure returned to AWS AppSync from a Lambda resolver.
Can contain either successful data or error information, but not both. Should be constructed using From implementations for either Value (success) or AppsyncError (failure).
§Examples
// Success response
let response: AppsyncResponse = json!({ "id": 123 }).into();
// Error response
let error = AppsyncError::new("NotFound", "Resource not found");
let response: AppsyncResponse = error.into();
Implementations§
Source§impl AppsyncResponse
impl AppsyncResponse
Returns an unauthorized error response
This creates a standard unauthorized error response for when a request lacks proper authentication.
§Examples
let response = AppsyncResponse::unauthorized();
Trait Implementations§
Source§impl Debug for AppsyncResponse
impl Debug for AppsyncResponse
Source§impl From<AppsyncError> for AppsyncResponse
impl From<AppsyncError> for AppsyncResponse
Source§fn from(value: AppsyncError) -> Self
fn from(value: AppsyncError) -> Self
Converts to this type from the input type.
Source§impl From<Value> for AppsyncResponse
impl From<Value> for AppsyncResponse
Auto Trait Implementations§
impl Freeze for AppsyncResponse
impl RefUnwindSafe for AppsyncResponse
impl Send for AppsyncResponse
impl Sync for AppsyncResponse
impl Unpin for AppsyncResponse
impl UnwindSafe for AppsyncResponse
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>
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 moreSource§impl<B> IntoFunctionResponse<B, Body> for Bwhere
B: Serialize,
impl<B> IntoFunctionResponse<B, Body> for Bwhere
B: Serialize,
Source§fn into_response(self) -> FunctionResponse<B, Body>
fn into_response(self) -> FunctionResponse<B, Body>
Convert the type into a FunctionResponse.
Creates a shared type from an unshared type.