Struct bitwarden_api_api::models::service_account_project_access_policy_response_model::ServiceAccountProjectAccessPolicyResponseModel
source · pub struct ServiceAccountProjectAccessPolicyResponseModel {
pub object: Option<String>,
pub id: Option<Uuid>,
pub read: Option<bool>,
pub write: Option<bool>,
pub creation_date: Option<String>,
pub revision_date: Option<String>,
pub service_account_id: Option<Uuid>,
pub service_account_name: Option<String>,
pub granted_project_id: Option<Uuid>,
pub granted_project_name: Option<String>,
}
Fields§
§object: Option<String>
§id: Option<Uuid>
§read: Option<bool>
§write: Option<bool>
§creation_date: Option<String>
§revision_date: Option<String>
§service_account_id: Option<Uuid>
§service_account_name: Option<String>
§granted_project_id: Option<Uuid>
§granted_project_name: Option<String>
Implementations§
Trait Implementations§
source§impl Clone for ServiceAccountProjectAccessPolicyResponseModel
impl Clone for ServiceAccountProjectAccessPolicyResponseModel
source§fn clone(&self) -> ServiceAccountProjectAccessPolicyResponseModel
fn clone(&self) -> ServiceAccountProjectAccessPolicyResponseModel
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<'de> Deserialize<'de> for ServiceAccountProjectAccessPolicyResponseModel
impl<'de> Deserialize<'de> for ServiceAccountProjectAccessPolicyResponseModel
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 ServiceAccountProjectAccessPolicyResponseModel
impl PartialEq for ServiceAccountProjectAccessPolicyResponseModel
source§fn eq(&self, other: &ServiceAccountProjectAccessPolicyResponseModel) -> bool
fn eq(&self, other: &ServiceAccountProjectAccessPolicyResponseModel) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ServiceAccountProjectAccessPolicyResponseModel
Auto Trait Implementations§
impl Freeze for ServiceAccountProjectAccessPolicyResponseModel
impl RefUnwindSafe for ServiceAccountProjectAccessPolicyResponseModel
impl Send for ServiceAccountProjectAccessPolicyResponseModel
impl Sync for ServiceAccountProjectAccessPolicyResponseModel
impl Unpin for ServiceAccountProjectAccessPolicyResponseModel
impl UnwindSafe for ServiceAccountProjectAccessPolicyResponseModel
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