pub struct UserAssignedIdentity {
pub principal_id: Option<String>,
pub client_id: Option<String>,
}Expand description
User assigned identity properties
Fields§
§principal_id: Option<String>The principal ID of the assigned identity.
client_id: Option<String>The client ID of the assigned identity.
Implementations§
Trait Implementations§
Source§impl Clone for UserAssignedIdentity
impl Clone for UserAssignedIdentity
Source§fn clone(&self) -> UserAssignedIdentity
fn clone(&self) -> UserAssignedIdentity
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 UserAssignedIdentity
impl Debug for UserAssignedIdentity
Source§impl Default for UserAssignedIdentity
impl Default for UserAssignedIdentity
Source§fn default() -> UserAssignedIdentity
fn default() -> UserAssignedIdentity
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for UserAssignedIdentity
impl<'de> Deserialize<'de> for UserAssignedIdentity
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 UserAssignedIdentity
impl PartialEq for UserAssignedIdentity
Source§impl Serialize for UserAssignedIdentity
impl Serialize for UserAssignedIdentity
impl StructuralPartialEq for UserAssignedIdentity
Auto Trait Implementations§
impl Freeze for UserAssignedIdentity
impl RefUnwindSafe for UserAssignedIdentity
impl Send for UserAssignedIdentity
impl Sync for UserAssignedIdentity
impl Unpin for UserAssignedIdentity
impl UnwindSafe for UserAssignedIdentity
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