Struct ockam_core::api::Response

source ·
pub struct Response<T = ()> { /* private fields */ }

Implementations§

source§

impl<T> Response<T>

source

pub fn id(self, id: Id) -> Self

source

pub fn re(self, re: Id) -> Self

Setter for the Request Id on the ResponseHeader

source

pub fn status(self, s: Status) -> Self

source

pub fn header(&self) -> &ResponseHeader

source

pub fn into_parts(self) -> (ResponseHeader, Option<T>)

source

pub fn with_headers(self, req: &RequestHeader) -> Self

Convenient wrapper to append the requests header to the response

source§

impl Response<()>

source

pub fn body<T: Encode<()>>(self, b: T) -> Response<T>

source§

impl Response

These functions create standard responses

source

pub fn error(r: &RequestHeader, msg: &str, status: Status) -> Response<Error>

source

pub fn ok() -> Response

source

pub fn bad_request_no_request(msg: &str) -> Response<Error>

source

pub fn bad_request(r: &RequestHeader, msg: &str) -> Response<Error>

Create a generic bad request response.

source

pub fn not_found(r: &RequestHeader, msg: &str) -> Response<Error>

source

pub fn not_found_no_request(msg: &str) -> Response<Error>

source

pub fn not_implemented(re: Id) -> Response

source

pub fn unauthorized(re: Id) -> Response

source

pub fn forbidden_no_request(re: Id) -> Response

source

pub fn forbidden(r: &RequestHeader, m: &str) -> Response<Error>

Create an error response with status forbidden and the given message.

source

pub fn internal_error_no_request(msg: &str) -> Response<Error>

source

pub fn internal_error(r: &RequestHeader, msg: &str) -> Response<Error>

Create an internal server error response

source

pub fn unknown_path(r: &RequestHeader) -> Response<Error>

Create an error response because the request path was unknown.

source

pub fn invalid_method(r: &RequestHeader) -> Response<Error>

Create an error response because the request method was unknown or not allowed.

source§

impl Response

source

pub fn parse_response_body<T>(bytes: &[u8]) -> Result<T>
where T: for<'a> Decode<'a, ()>,

Parse the response header and if it is ok parse and decode the response body

source

pub fn parse_response_reply<T>(bytes: &[u8]) -> Result<Reply<T>>
where T: for<'a> Decode<'a, ()>,

Parse the response header and if it is ok parse the response body

source

pub fn parse_response_header( bytes: &[u8], ) -> Result<(ResponseHeader, Decoder<'_>)>

Parse the response header and return it + the Decoder to continue parsing if necessary

source§

impl<T: Encode<()>> Response<T>

source

pub fn encode<W>(&self, buf: W) -> Result<(), Error<W::Error>>
where W: Write,

source

pub fn to_vec(self) -> Result<Vec<u8>, Error<<Vec<u8> as Write>::Error>>

Trait Implementations§

source§

impl<T: Debug> Debug for Response<T>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl From<Error> for Response<Error>

source§

fn from(e: Error) -> Self

Converts to this type from the input type.
source§

impl From<Error> for Response<Error>

source§

fn from(e: Error) -> Self

Converts to this type from the input type.

Auto Trait Implementations§

§

impl<T> Freeze for Response<T>
where T: Freeze,

§

impl<T> RefUnwindSafe for Response<T>
where T: RefUnwindSafe,

§

impl<T> Send for Response<T>
where T: Send,

§

impl<T> Sync for Response<T>
where T: Sync,

§

impl<T> Unpin for Response<T>
where T: Unpin,

§

impl<T> UnwindSafe for Response<T>
where T: UnwindSafe,

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T> FutureExt for T

source§

fn with_context(self, otel_cx: Context) -> WithContext<Self>

Attaches the provided Context to this type, returning a WithContext wrapper. Read more
source§

fn with_current_context(self) -> WithContext<Self>

Attaches the current Context to this type, returning a WithContext wrapper. Read more
source§

impl<T> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

source§

fn vzip(self) -> V

source§

impl<T> WithSubscriber for T

source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more