pub struct LocalConsoleRuntimeConfig {
pub api_base_url: String,
pub local_mode: bool,
pub start_onboarding: bool,
pub tenant_id: String,
pub principal_id: String,
pub profile: LocalConsoleRuntimeConfigProfile,
pub entitlements: Vec<LocalConsoleRuntimeConfigEntitlements>,
}Fields§
§api_base_url: String§local_mode: bool§start_onboarding: bool§tenant_id: String§principal_id: String§profile: LocalConsoleRuntimeConfigProfile§entitlements: Vec<LocalConsoleRuntimeConfigEntitlements>Implementations§
Source§impl LocalConsoleRuntimeConfig
impl LocalConsoleRuntimeConfig
pub fn new( api_base_url: String, local_mode: bool, start_onboarding: bool, tenant_id: String, principal_id: String, profile: LocalConsoleRuntimeConfigProfile, entitlements: Vec<LocalConsoleRuntimeConfigEntitlements>, ) -> LocalConsoleRuntimeConfig
Trait Implementations§
Source§impl Clone for LocalConsoleRuntimeConfig
impl Clone for LocalConsoleRuntimeConfig
Source§fn clone(&self) -> LocalConsoleRuntimeConfig
fn clone(&self) -> LocalConsoleRuntimeConfig
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 LocalConsoleRuntimeConfig
impl Debug for LocalConsoleRuntimeConfig
Source§impl Default for LocalConsoleRuntimeConfig
impl Default for LocalConsoleRuntimeConfig
Source§fn default() -> LocalConsoleRuntimeConfig
fn default() -> LocalConsoleRuntimeConfig
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for LocalConsoleRuntimeConfig
impl<'de> Deserialize<'de> for LocalConsoleRuntimeConfig
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for LocalConsoleRuntimeConfig
impl PartialEq for LocalConsoleRuntimeConfig
Source§fn eq(&self, other: &LocalConsoleRuntimeConfig) -> bool
fn eq(&self, other: &LocalConsoleRuntimeConfig) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for LocalConsoleRuntimeConfig
Auto Trait Implementations§
impl Freeze for LocalConsoleRuntimeConfig
impl RefUnwindSafe for LocalConsoleRuntimeConfig
impl Send for LocalConsoleRuntimeConfig
impl Sync for LocalConsoleRuntimeConfig
impl Unpin for LocalConsoleRuntimeConfig
impl UnsafeUnpin for LocalConsoleRuntimeConfig
impl UnwindSafe for LocalConsoleRuntimeConfig
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