pub struct RetrieveProjectUserParams {
pub project_id: String,
pub user_id: String,
}
Fields§
§project_id: String
The ID of the project.
user_id: String
The ID of the user.
Implementations§
Trait Implementations§
Source§impl Clone for RetrieveProjectUserParams
impl Clone for RetrieveProjectUserParams
Source§fn clone(&self) -> RetrieveProjectUserParams
fn clone(&self) -> RetrieveProjectUserParams
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for RetrieveProjectUserParams
impl Debug for RetrieveProjectUserParams
Source§impl<'de> Deserialize<'de> for RetrieveProjectUserParams
impl<'de> Deserialize<'de> for RetrieveProjectUserParams
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 RetrieveProjectUserParams
impl PartialEq for RetrieveProjectUserParams
Source§fn eq(&self, other: &RetrieveProjectUserParams) -> bool
fn eq(&self, other: &RetrieveProjectUserParams) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for RetrieveProjectUserParams
Auto Trait Implementations§
impl Freeze for RetrieveProjectUserParams
impl RefUnwindSafe for RetrieveProjectUserParams
impl Send for RetrieveProjectUserParams
impl Sync for RetrieveProjectUserParams
impl Unpin for RetrieveProjectUserParams
impl UnwindSafe for RetrieveProjectUserParams
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