pub struct SignedRequest(/* private fields */);Expand description
A request which follows the RFC 8885 protocol for HTTP with JWS authentication and has been signed with a private key.
This request is ready to be transmitted over HTTP.
Trait Implementations§
Source§impl From<SignedRequest> for Request
impl From<SignedRequest> for Request
Source§fn from(value: SignedRequest) -> Self
fn from(value: SignedRequest) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl !Freeze for SignedRequest
impl !RefUnwindSafe for SignedRequest
impl Send for SignedRequest
impl Sync for SignedRequest
impl Unpin for SignedRequest
impl !UnwindSafe for SignedRequest
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