pub struct SendRequestInput<B: Serialize> {
pub method: Method,
pub url: String,
pub body: B,
pub server_token: Option<String>,
}Fields§
§method: Method§url: String§body: B§server_token: Option<String>Auto Trait Implementations§
impl<B> Freeze for SendRequestInput<B>where
B: Freeze,
impl<B> RefUnwindSafe for SendRequestInput<B>where
B: RefUnwindSafe,
impl<B> Send for SendRequestInput<B>where
B: Send,
impl<B> Sync for SendRequestInput<B>where
B: Sync,
impl<B> Unpin for SendRequestInput<B>where
B: Unpin,
impl<B> UnsafeUnpin for SendRequestInput<B>where
B: UnsafeUnpin,
impl<B> UnwindSafe for SendRequestInput<B>where
B: UnwindSafe,
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