pub struct RequestWrapper {
pub request: Request,
}
Expand description
This is a serialization wrapper for a Request, as a Request object serializes into a value, for an object, not an object that is ‘{“request”: {….} }’. This wrapper provides the request wrapping that Omaha expects to see.
Fields§
§request: Request
Trait Implementations§
Source§impl Debug for RequestWrapper
impl Debug for RequestWrapper
Source§impl Default for RequestWrapper
impl Default for RequestWrapper
Source§fn default() -> RequestWrapper
fn default() -> RequestWrapper
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for RequestWrapper
impl RefUnwindSafe for RequestWrapper
impl Send for RequestWrapper
impl Sync for RequestWrapper
impl Unpin for RequestWrapper
impl UnwindSafe for RequestWrapper
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