pub struct FrameRequest(/* private fields */);Expand description
An axum request being turned into an intrepid frame.
Trait Implementations§
Source§impl From<FrameRequest> for Frame
impl From<FrameRequest> for Frame
Source§fn from(frame: FrameRequest) -> Self
fn from(frame: FrameRequest) -> Self
Converts to this type from the input type.
Source§impl<State> FromRequest<State> for FrameRequest
impl<State> FromRequest<State> for FrameRequest
Source§impl<State> Service<FrameRequest> for StatefulSystem<State>
impl<State> Service<FrameRequest> for StatefulSystem<State>
Source§type Response = FrameResponse
type Response = FrameResponse
Responses given by the service.
Source§type Error = FrameResponseError
type Error = FrameResponseError
Errors produced by the service.
Source§type Future = Pin<Box<dyn Future<Output = Result<<System<Stateful<State>, State> as Service<FrameRequest>>::Response, <System<Stateful<State>, State> as Service<FrameRequest>>::Error>> + Send>>
type Future = Pin<Box<dyn Future<Output = Result<<System<Stateful<State>, State> as Service<FrameRequest>>::Response, <System<Stateful<State>, State> as Service<FrameRequest>>::Error>> + Send>>
The future response value.
Auto Trait Implementations§
impl !Freeze for FrameRequest
impl RefUnwindSafe for FrameRequest
impl Send for FrameRequest
impl Sync for FrameRequest
impl Unpin for FrameRequest
impl UnwindSafe for FrameRequest
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