pub enum HttpParam {
Get {
endpoint: String,
},
Put {
endpoint: String,
body: String,
},
Post {
endpoint: String,
body: String,
},
}
Expand description
Параметры HTTP
Variants§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for HttpParam
impl RefUnwindSafe for HttpParam
impl Send for HttpParam
impl Sync for HttpParam
impl Unpin for HttpParam
impl UnwindSafe for HttpParam
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