pub struct ResolvedConfig {
pub profile_name: String,
pub tenant_id: Option<String>,
pub client_id: Option<String>,
pub default_site: Option<String>,
pub read_only: bool,
pub site_aliases: BTreeMap<String, String>,
pub graph_endpoint: String,
pub login_endpoint: String,
pub debug_http: bool,
pub access_token_override: Option<String>,
pub refresh_token_seed: Option<String>,
}Expand description
Fully resolved runtime settings (after merging file + env + flags).
Fields§
§profile_name: String§tenant_id: Option<String>§client_id: Option<String>§default_site: Option<String>§read_only: bool§site_aliases: BTreeMap<String, String>§graph_endpoint: String§login_endpoint: String§debug_http: bool§access_token_override: Option<String>§refresh_token_seed: Option<String>Trait Implementations§
Source§impl Clone for ResolvedConfig
impl Clone for ResolvedConfig
Source§fn clone(&self) -> ResolvedConfig
fn clone(&self) -> ResolvedConfig
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 moreAuto Trait Implementations§
impl Freeze for ResolvedConfig
impl RefUnwindSafe for ResolvedConfig
impl Send for ResolvedConfig
impl Sync for ResolvedConfig
impl Unpin for ResolvedConfig
impl UnsafeUnpin for ResolvedConfig
impl UnwindSafe for ResolvedConfig
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