pub struct UpdateUserResponse {
pub server_id: String,
pub user_name: String,
}Expand description
UpdateUserResponse returns the user name and file transfer protocol-enabled server identifier for the request to update a user's properties.
Fields§
§server_id: StringA system-assigned unique identifier for a file transfer protocol-enabled server instance that the user account is assigned to.
user_name: StringThe unique identifier for a user that is assigned to a file transfer protocol-enabled server instance that was specified in the request.
Trait Implementations§
Source§impl Clone for UpdateUserResponse
impl Clone for UpdateUserResponse
Source§fn clone(&self) -> UpdateUserResponse
fn clone(&self) -> UpdateUserResponse
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 UpdateUserResponse
impl Debug for UpdateUserResponse
Source§impl Default for UpdateUserResponse
impl Default for UpdateUserResponse
Source§fn default() -> UpdateUserResponse
fn default() -> UpdateUserResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for UpdateUserResponse
impl<'de> Deserialize<'de> for UpdateUserResponse
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 UpdateUserResponse
impl PartialEq for UpdateUserResponse
Source§fn eq(&self, other: &UpdateUserResponse) -> bool
fn eq(&self, other: &UpdateUserResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for UpdateUserResponse
Auto Trait Implementations§
impl Freeze for UpdateUserResponse
impl RefUnwindSafe for UpdateUserResponse
impl Send for UpdateUserResponse
impl Sync for UpdateUserResponse
impl Unpin for UpdateUserResponse
impl UnsafeUnpin for UpdateUserResponse
impl UnwindSafe for UpdateUserResponse
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