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