pub struct ServiceAccountCreateInput {
pub display_name: String,
pub email: String,
pub parent_id: i64,
pub parent_type: ParentResourceType,
}Fields§
§display_name: String§email: String§parent_id: i64§parent_type: ParentResourceTypeImplementations§
Source§impl ServiceAccountCreateInput
impl ServiceAccountCreateInput
pub fn new( display_name: String, email: String, parent_id: i64, parent_type: ParentResourceType, ) -> ServiceAccountCreateInput
Trait Implementations§
Source§impl Clone for ServiceAccountCreateInput
impl Clone for ServiceAccountCreateInput
Source§fn clone(&self) -> ServiceAccountCreateInput
fn clone(&self) -> ServiceAccountCreateInput
Returns a duplicate 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 ServiceAccountCreateInput
impl Debug for ServiceAccountCreateInput
Source§impl Default for ServiceAccountCreateInput
impl Default for ServiceAccountCreateInput
Source§fn default() -> ServiceAccountCreateInput
fn default() -> ServiceAccountCreateInput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ServiceAccountCreateInput
impl<'de> Deserialize<'de> for ServiceAccountCreateInput
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 ServiceAccountCreateInput
Auto Trait Implementations§
impl Freeze for ServiceAccountCreateInput
impl RefUnwindSafe for ServiceAccountCreateInput
impl Send for ServiceAccountCreateInput
impl Sync for ServiceAccountCreateInput
impl Unpin for ServiceAccountCreateInput
impl UnwindSafe for ServiceAccountCreateInput
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