pub struct DeleteUserRequest {
pub server_id: String,
pub user_name: String,
}Fields§
§server_id: StringA system-assigned unique identifier for a file transfer protocol-enabled server instance that has the user assigned to it.
user_name: StringA unique string that identifies a user that is being deleted from a file transfer protocol-enabled server.
Trait Implementations§
Source§impl Clone for DeleteUserRequest
impl Clone for DeleteUserRequest
Source§fn clone(&self) -> DeleteUserRequest
fn clone(&self) -> DeleteUserRequest
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 DeleteUserRequest
impl Debug for DeleteUserRequest
Source§impl Default for DeleteUserRequest
impl Default for DeleteUserRequest
Source§fn default() -> DeleteUserRequest
fn default() -> DeleteUserRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for DeleteUserRequest
impl PartialEq for DeleteUserRequest
Source§fn eq(&self, other: &DeleteUserRequest) -> bool
fn eq(&self, other: &DeleteUserRequest) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for DeleteUserRequest
impl Serialize for DeleteUserRequest
impl StructuralPartialEq for DeleteUserRequest
Auto Trait Implementations§
impl Freeze for DeleteUserRequest
impl RefUnwindSafe for DeleteUserRequest
impl Send for DeleteUserRequest
impl Sync for DeleteUserRequest
impl Unpin for DeleteUserRequest
impl UnsafeUnpin for DeleteUserRequest
impl UnwindSafe for DeleteUserRequest
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