pub struct RemoveTeamMemberRequest {
pub destroy_user: Option<bool>,
}Expand description
Parameters for remove_team_member.
Fields§
§destroy_user: Option<bool>When true, also delete the user entirely rather than just removing them from the team.
Trait Implementations§
Source§impl Clone for RemoveTeamMemberRequest
impl Clone for RemoveTeamMemberRequest
Source§fn clone(&self) -> RemoveTeamMemberRequest
fn clone(&self) -> RemoveTeamMemberRequest
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 RemoveTeamMemberRequest
impl Debug for RemoveTeamMemberRequest
Source§impl Default for RemoveTeamMemberRequest
impl Default for RemoveTeamMemberRequest
Source§fn default() -> RemoveTeamMemberRequest
fn default() -> RemoveTeamMemberRequest
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for RemoveTeamMemberRequest
impl RefUnwindSafe for RemoveTeamMemberRequest
impl Send for RemoveTeamMemberRequest
impl Sync for RemoveTeamMemberRequest
impl Unpin for RemoveTeamMemberRequest
impl UnsafeUnpin for RemoveTeamMemberRequest
impl UnwindSafe for RemoveTeamMemberRequest
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