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();Sourcepub fn data(&self) -> Option<&Value>
pub fn data(&self) -> Option<&Value>
Returns a reference to the response data, if present
§Examples
let response = AppsyncResponse::from(json!({"user": "Alice"}));
assert!(response.data().is_some());Sourcepub fn error(&self) -> Option<&AppsyncError>
pub fn error(&self) -> Option<&AppsyncError>
Returns a reference to the response error, if present
§Examples
let error = AppsyncError::new("NotFound", "User not found");
let response = AppsyncResponse::from(error);
assert!(response.error().is_some());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 UnsafeUnpin 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<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.