pub struct ServiceAccountAccessPolicyResponseModel {
pub object: Option<String>,
pub read: Option<bool>,
pub write: Option<bool>,
pub service_account_id: Option<Uuid>,
pub service_account_name: Option<String>,
}
Fields§
§object: Option<String>
§read: Option<bool>
§write: Option<bool>
§service_account_id: Option<Uuid>
§service_account_name: Option<String>
Implementations§
Trait Implementations§
Source§impl Clone for ServiceAccountAccessPolicyResponseModel
impl Clone for ServiceAccountAccessPolicyResponseModel
Source§fn clone(&self) -> ServiceAccountAccessPolicyResponseModel
fn clone(&self) -> ServiceAccountAccessPolicyResponseModel
Returns a copy 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 ServiceAccountAccessPolicyResponseModel
impl Default for ServiceAccountAccessPolicyResponseModel
Source§fn default() -> ServiceAccountAccessPolicyResponseModel
fn default() -> ServiceAccountAccessPolicyResponseModel
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ServiceAccountAccessPolicyResponseModel
impl<'de> Deserialize<'de> for ServiceAccountAccessPolicyResponseModel
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 ServiceAccountAccessPolicyResponseModel
impl PartialEq for ServiceAccountAccessPolicyResponseModel
Source§fn eq(&self, other: &ServiceAccountAccessPolicyResponseModel) -> bool
fn eq(&self, other: &ServiceAccountAccessPolicyResponseModel) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for ServiceAccountAccessPolicyResponseModel
Auto Trait Implementations§
impl Freeze for ServiceAccountAccessPolicyResponseModel
impl RefUnwindSafe for ServiceAccountAccessPolicyResponseModel
impl Send for ServiceAccountAccessPolicyResponseModel
impl Sync for ServiceAccountAccessPolicyResponseModel
impl Unpin for ServiceAccountAccessPolicyResponseModel
impl UnwindSafe for ServiceAccountAccessPolicyResponseModel
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