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