pub struct HttpResponse { /* private fields */ }Expand description
HTTP Response builder providing Laravel-like response creation
Implementations§
Source§impl HttpResponse
impl HttpResponse
Trait Implementations§
Source§impl Default for HttpResponse
impl Default for HttpResponse
Source§impl From<AppError> for HttpResponse
Auto-convert AppError to HttpResponse
impl From<AppError> for HttpResponse
Auto-convert AppError to HttpResponse
This enables using the ? operator in controller handlers with AppError.
Source§fn from(err: AppError) -> HttpResponse
fn from(err: AppError) -> HttpResponse
Converts to this type from the input type.
Source§impl From<AuthorizationError> for HttpResponse
impl From<AuthorizationError> for HttpResponse
Source§fn from(err: AuthorizationError) -> HttpResponse
fn from(err: AuthorizationError) -> HttpResponse
Converts to this type from the input type.
Source§impl From<FrameworkError> for HttpResponse
Auto-convert FrameworkError to HttpResponse
impl From<FrameworkError> for HttpResponse
Auto-convert FrameworkError to HttpResponse
This enables using the ? operator in controller handlers to propagate
framework errors as appropriate HTTP responses.
When a hint is available (via FrameworkError::hint()), the JSON response
includes a "hint" field with actionable guidance for the developer.
Source§fn from(err: FrameworkError) -> HttpResponse
fn from(err: FrameworkError) -> HttpResponse
Converts to this type from the input type.
Source§impl From<ParamError> for HttpResponse
impl From<ParamError> for HttpResponse
Source§fn from(err: ParamError) -> HttpResponse
fn from(err: ParamError) -> HttpResponse
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for HttpResponse
impl RefUnwindSafe for HttpResponse
impl Send for HttpResponse
impl Sync for HttpResponse
impl Unpin for HttpResponse
impl UnsafeUnpin for HttpResponse
impl UnwindSafe for HttpResponse
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 more