pub struct WorkspaceMemberRequest {
pub workspace_id: String,
pub user_id: String,
pub credentials: Option<Credentials>,
}Expand description
Request parameters for getting a specific workspace member.
Fields§
§workspace_id: StringWorkspace identifier
user_id: StringUser identifier
credentials: Option<Credentials>Credentials for authentication (not serialized)
Trait Implementations§
Source§impl Clone for WorkspaceMemberRequest
impl Clone for WorkspaceMemberRequest
Source§fn clone(&self) -> WorkspaceMemberRequest
fn clone(&self) -> WorkspaceMemberRequest
Returns a copy 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 moreSource§impl Debug for WorkspaceMemberRequest
impl Debug for WorkspaceMemberRequest
Auto Trait Implementations§
impl Freeze for WorkspaceMemberRequest
impl RefUnwindSafe for WorkspaceMemberRequest
impl Send for WorkspaceMemberRequest
impl Sync for WorkspaceMemberRequest
impl Unpin for WorkspaceMemberRequest
impl UnwindSafe for WorkspaceMemberRequest
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