pub struct ServiceAccountResponseModel {
pub object: Option<String>,
pub id: Option<Uuid>,
pub organization_id: Option<Uuid>,
pub name: Option<String>,
pub creation_date: Option<String>,
pub revision_date: Option<String>,
}
Fields§
§object: Option<String>
§id: Option<Uuid>
§organization_id: Option<Uuid>
§name: Option<String>
§creation_date: Option<String>
§revision_date: Option<String>
Implementations§
Source§impl ServiceAccountResponseModel
impl ServiceAccountResponseModel
pub fn new() -> ServiceAccountResponseModel
Trait Implementations§
Source§impl Clone for ServiceAccountResponseModel
impl Clone for ServiceAccountResponseModel
Source§fn clone(&self) -> ServiceAccountResponseModel
fn clone(&self) -> ServiceAccountResponseModel
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 Debug for ServiceAccountResponseModel
impl Debug for ServiceAccountResponseModel
Source§impl Default for ServiceAccountResponseModel
impl Default for ServiceAccountResponseModel
Source§fn default() -> ServiceAccountResponseModel
fn default() -> ServiceAccountResponseModel
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ServiceAccountResponseModel
impl<'de> Deserialize<'de> for ServiceAccountResponseModel
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
impl StructuralPartialEq for ServiceAccountResponseModel
Auto Trait Implementations§
impl Freeze for ServiceAccountResponseModel
impl RefUnwindSafe for ServiceAccountResponseModel
impl Send for ServiceAccountResponseModel
impl Sync for ServiceAccountResponseModel
impl Unpin for ServiceAccountResponseModel
impl UnwindSafe for ServiceAccountResponseModel
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