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