pub struct RemoveUserParams {
pub account_id: String,
pub username: Option<String>,
pub key: Option<String>,
}
Expand description
struct for passing parameters to the method remove_user
Fields§
§account_id: String
The account ID of the user, which uniquely identifies the user across all Atlassian products. For example, 5b10ac8d82e05b22cc7d4ef5.
username: Option<String>
This parameter is no longer available and will be removed from the documentation soon. See the deprecation notice for details.
key: Option<String>
This parameter is no longer available and will be removed from the documentation soon. See the deprecation notice for details.
Trait Implementations§
Source§impl Clone for RemoveUserParams
impl Clone for RemoveUserParams
Source§fn clone(&self) -> RemoveUserParams
fn clone(&self) -> RemoveUserParams
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 moreAuto Trait Implementations§
impl Freeze for RemoveUserParams
impl RefUnwindSafe for RemoveUserParams
impl Send for RemoveUserParams
impl Sync for RemoveUserParams
impl Unpin for RemoveUserParams
impl UnwindSafe for RemoveUserParams
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