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