#[non_exhaustive]pub struct CustomConfiguration {
pub authority_host: String,
pub audiences: Audiences,
}Available on crate feature
export-azure only.Expand description
Configuration for a custom cloud.
Fields (Non-exhaustive)ยง
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.Base URL for authentication, for example โhttps://login.microsoftonline.comโ
audiences: AudiencesMap of SDK modules to their Entra ID audiences.
Trait Implementationsยง
Sourceยงimpl Clone for CustomConfiguration
impl Clone for CustomConfiguration
Sourceยงfn clone(&self) -> CustomConfiguration
fn clone(&self) -> CustomConfiguration
Returns a duplicate of the value. Read more
1.0.0 ยท 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 CustomConfiguration
impl Debug for CustomConfiguration
Sourceยงimpl Default for CustomConfiguration
impl Default for CustomConfiguration
Sourceยงfn default() -> CustomConfiguration
fn default() -> CustomConfiguration
Returns the โdefault valueโ for a type. Read more
Sourceยงimpl From<CustomConfiguration> for CloudConfiguration
impl From<CustomConfiguration> for CloudConfiguration
Sourceยงfn from(config: CustomConfiguration) -> CloudConfiguration
fn from(config: CustomConfiguration) -> CloudConfiguration
Converts to this type from the input type.
Sourceยงimpl PartialEq for CustomConfiguration
impl PartialEq for CustomConfiguration
impl Eq for CustomConfiguration
impl StructuralPartialEq for CustomConfiguration
Auto Trait Implementationsยง
impl Freeze for CustomConfiguration
impl RefUnwindSafe for CustomConfiguration
impl Send for CustomConfiguration
impl Sync for CustomConfiguration
impl Unpin for CustomConfiguration
impl UnsafeUnpin for CustomConfiguration
impl UnwindSafe for CustomConfiguration
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