pub struct AuthRequestParams {
pub method: Method,
pub base_url: String,
pub path: String,
pub query_params: Option<HashMap<String, String>>,
pub body: Option<HashMap<String, Value>>,
pub headers: Option<HashMap<String, String>>,
pub token_type: String,
}Fields§
§method: Method§base_url: String§path: String§query_params: Option<HashMap<String, String>>§body: Option<HashMap<String, Value>>§headers: Option<HashMap<String, String>>§token_type: StringAuto Trait Implementations§
impl Freeze for AuthRequestParams
impl RefUnwindSafe for AuthRequestParams
impl Send for AuthRequestParams
impl Sync for AuthRequestParams
impl Unpin for AuthRequestParams
impl UnwindSafe for AuthRequestParams
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