pub struct GraphServicePrincipalCreationContext {
pub storage_key: Option<String>,
}Expand description
Do not attempt to use this type to create a new service principal. Use one of the subclasses instead. This type does not contain sufficient fields to create a new service principal.
Fields§
§storage_key: Option<String>Optional: If provided, we will use this identifier for the storage key of the created service principal
Implementations§
Trait Implementations§
Source§impl Clone for GraphServicePrincipalCreationContext
impl Clone for GraphServicePrincipalCreationContext
Source§fn clone(&self) -> GraphServicePrincipalCreationContext
fn clone(&self) -> GraphServicePrincipalCreationContext
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 Default for GraphServicePrincipalCreationContext
impl Default for GraphServicePrincipalCreationContext
Source§fn default() -> GraphServicePrincipalCreationContext
fn default() -> GraphServicePrincipalCreationContext
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GraphServicePrincipalCreationContext
impl<'de> Deserialize<'de> for GraphServicePrincipalCreationContext
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 GraphServicePrincipalCreationContext
impl PartialEq for GraphServicePrincipalCreationContext
Source§fn eq(&self, other: &GraphServicePrincipalCreationContext) -> bool
fn eq(&self, other: &GraphServicePrincipalCreationContext) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for GraphServicePrincipalCreationContext
Auto Trait Implementations§
impl Freeze for GraphServicePrincipalCreationContext
impl RefUnwindSafe for GraphServicePrincipalCreationContext
impl Send for GraphServicePrincipalCreationContext
impl Sync for GraphServicePrincipalCreationContext
impl Unpin for GraphServicePrincipalCreationContext
impl UnwindSafe for GraphServicePrincipalCreationContext
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