pub struct HighLevelConfig {
pub client_id: String,
pub client_secret: String,
pub api_version: String,
pub base_url: String,
pub redirect_uri: Option<String>,
}Fields§
§client_id: String§client_secret: String§api_version: StringAPI version header sent with every request (e.g. “2021-07-28”)
base_url: String§redirect_uri: Option<String>Implementations§
Trait Implementations§
Source§impl Clone for HighLevelConfig
impl Clone for HighLevelConfig
Source§fn clone(&self) -> HighLevelConfig
fn clone(&self) -> HighLevelConfig
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for HighLevelConfig
impl Debug for HighLevelConfig
Auto Trait Implementations§
impl Freeze for HighLevelConfig
impl RefUnwindSafe for HighLevelConfig
impl Send for HighLevelConfig
impl Sync for HighLevelConfig
impl Unpin for HighLevelConfig
impl UnsafeUnpin for HighLevelConfig
impl UnwindSafe for HighLevelConfig
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