pub struct AzureRoleBinding {
pub permission_set_id: String,
pub role_name: String,
pub role_definition: AzureRoleDefinitionRef,
pub scope: String,
}Expand description
Azure role binding.
Fields§
§permission_set_id: StringPermission set that authored the binding.
role_name: StringAzure role name.
role_definition: AzureRoleDefinitionRefFull Azure role definition ID, or a custom role key.
scope: StringScope where the role is assigned.
Trait Implementations§
Source§impl Clone for AzureRoleBinding
impl Clone for AzureRoleBinding
Source§fn clone(&self) -> AzureRoleBinding
fn clone(&self) -> AzureRoleBinding
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 AzureRoleBinding
impl Debug for AzureRoleBinding
Source§impl<'de> Deserialize<'de> for AzureRoleBinding
impl<'de> Deserialize<'de> for AzureRoleBinding
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 AzureRoleBinding
impl PartialEq for AzureRoleBinding
Source§fn eq(&self, other: &AzureRoleBinding) -> bool
fn eq(&self, other: &AzureRoleBinding) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for AzureRoleBinding
impl Serialize for AzureRoleBinding
impl Eq for AzureRoleBinding
impl StructuralPartialEq for AzureRoleBinding
Auto Trait Implementations§
impl Freeze for AzureRoleBinding
impl RefUnwindSafe for AzureRoleBinding
impl Send for AzureRoleBinding
impl Sync for AzureRoleBinding
impl Unpin for AzureRoleBinding
impl UnsafeUnpin for AzureRoleBinding
impl UnwindSafe for AzureRoleBinding
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.