pub struct GetOpenAPIOptions {
pub client_id: String,
pub user_agent: String,
pub url: String,
pub method: Method,
pub authorization_type: String,
pub body: Option<String>,
pub auth_api: String,
pub timeout: Option<Duration>,
}
Fields§
§client_id: String
§user_agent: String
§url: String
§method: Method
Basic, Bearer
body: Option<String>
§auth_api: String
§timeout: Option<Duration>
Trait Implementations§
Source§impl Clone for GetOpenAPIOptions
impl Clone for GetOpenAPIOptions
Source§fn clone(&self) -> GetOpenAPIOptions
fn clone(&self) -> GetOpenAPIOptions
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreAuto Trait Implementations§
impl Freeze for GetOpenAPIOptions
impl RefUnwindSafe for GetOpenAPIOptions
impl Send for GetOpenAPIOptions
impl Sync for GetOpenAPIOptions
impl Unpin for GetOpenAPIOptions
impl UnwindSafe for GetOpenAPIOptions
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