pub struct Request<B>(/* private fields */);Implementations§
Source§impl Request<()>
impl Request<()>
pub fn get(uri: impl IntoUtf8Bytes) -> Builder<Outgoing>
pub fn post(uri: impl IntoUtf8Bytes) -> Builder<()>
pub fn patch(uri: impl IntoUtf8Bytes) -> Builder<()>
pub fn put(uri: impl IntoUtf8Bytes) -> Builder<()>
pub fn delete(uri: impl IntoUtf8Bytes) -> Builder<()>
Auto Trait Implementations§
impl<B> !Freeze for Request<B>
impl<B> !RefUnwindSafe for Request<B>
impl<B> Send for Request<B>where
B: Send,
impl<B> Sync for Request<B>where
B: Sync,
impl<B> Unpin for Request<B>where
B: Unpin,
impl<B> UnsafeUnpin for Request<B>where
B: UnsafeUnpin,
impl<B> !UnwindSafe for Request<B>
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