pub struct UpdateUserInformationRequest<'a> {
pub user_id: String,
pub schemas: Option<Vec<String>>,
pub name: Option<Value>,
/* private fields */
}
Expand description
Create this with the associated client method.
That method takes required values as arguments. Set optional values using builder methods on this struct.
Fields§
§user_id: String
§schemas: Option<Vec<String>>
§name: Option<Value>
Implementations§
Auto Trait Implementations§
impl<'a> Freeze for UpdateUserInformationRequest<'a>
impl<'a> !RefUnwindSafe for UpdateUserInformationRequest<'a>
impl<'a> Send for UpdateUserInformationRequest<'a>
impl<'a> Sync for UpdateUserInformationRequest<'a>
impl<'a> Unpin for UpdateUserInformationRequest<'a>
impl<'a> !UnwindSafe for UpdateUserInformationRequest<'a>
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