pub struct DeleteUserResponse {
pub deleted_users: Vec<User>,
pub errors: Vec<ErrorResponse>,
}
Expand description
The response returned from deleting a user. FROM: https://airtable.com/api/enterprise#enterpriseAccountUserDeleteUserByEmail
Fields§
§deleted_users: Vec<User>
§errors: Vec<ErrorResponse>
Trait Implementations§
Source§impl Clone for DeleteUserResponse
impl Clone for DeleteUserResponse
Source§fn clone(&self) -> DeleteUserResponse
fn clone(&self) -> DeleteUserResponse
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 DeleteUserResponse
impl Debug for DeleteUserResponse
Source§impl Default for DeleteUserResponse
impl Default for DeleteUserResponse
Source§fn default() -> DeleteUserResponse
fn default() -> DeleteUserResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DeleteUserResponse
impl<'de> Deserialize<'de> for DeleteUserResponse
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
Auto Trait Implementations§
impl Freeze for DeleteUserResponse
impl RefUnwindSafe for DeleteUserResponse
impl Send for DeleteUserResponse
impl Sync for DeleteUserResponse
impl Unpin for DeleteUserResponse
impl UnwindSafe for DeleteUserResponse
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