pub struct BatchUpdateUserResponse {
pub user_errors: Option<Vec<UserError>>,
}Fields§
§user_errors: Option<Vec<UserError>>If the BatchUpdateUser action fails for one or more of the user IDs in the request, a list of the user IDs is returned, along with error codes and error messages.
Trait Implementations§
Source§impl Clone for BatchUpdateUserResponse
impl Clone for BatchUpdateUserResponse
Source§fn clone(&self) -> BatchUpdateUserResponse
fn clone(&self) -> BatchUpdateUserResponse
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 BatchUpdateUserResponse
impl Debug for BatchUpdateUserResponse
Source§impl Default for BatchUpdateUserResponse
impl Default for BatchUpdateUserResponse
Source§fn default() -> BatchUpdateUserResponse
fn default() -> BatchUpdateUserResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for BatchUpdateUserResponse
impl<'de> Deserialize<'de> for BatchUpdateUserResponse
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 BatchUpdateUserResponse
impl PartialEq for BatchUpdateUserResponse
impl StructuralPartialEq for BatchUpdateUserResponse
Auto Trait Implementations§
impl Freeze for BatchUpdateUserResponse
impl RefUnwindSafe for BatchUpdateUserResponse
impl Send for BatchUpdateUserResponse
impl Sync for BatchUpdateUserResponse
impl Unpin for BatchUpdateUserResponse
impl UnwindSafe for BatchUpdateUserResponse
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