pub struct DescribeUserResponse {
pub server_id: String,
pub user: DescribedUser,
}Fields§
§server_id: StringA system-assigned unique identifier for a file transfer protocol-enabled server that has this user assigned.
user: DescribedUserAn array containing the properties of the user account for the ServerID value that you specified.
Trait Implementations§
Source§impl Clone for DescribeUserResponse
impl Clone for DescribeUserResponse
Source§fn clone(&self) -> DescribeUserResponse
fn clone(&self) -> DescribeUserResponse
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 DescribeUserResponse
impl Debug for DescribeUserResponse
Source§impl Default for DescribeUserResponse
impl Default for DescribeUserResponse
Source§fn default() -> DescribeUserResponse
fn default() -> DescribeUserResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DescribeUserResponse
impl<'de> Deserialize<'de> for DescribeUserResponse
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 DescribeUserResponse
impl PartialEq for DescribeUserResponse
Source§fn eq(&self, other: &DescribeUserResponse) -> bool
fn eq(&self, other: &DescribeUserResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for DescribeUserResponse
Auto Trait Implementations§
impl Freeze for DescribeUserResponse
impl RefUnwindSafe for DescribeUserResponse
impl Send for DescribeUserResponse
impl Sync for DescribeUserResponse
impl Unpin for DescribeUserResponse
impl UnsafeUnpin for DescribeUserResponse
impl UnwindSafe for DescribeUserResponse
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