pub struct ListProjectMembersParams {
pub project_name_or_id: String,
pub x_request_id: Option<String>,
pub x_is_resource_name: Option<bool>,
pub page: Option<i64>,
pub page_size: Option<i64>,
pub entityname: Option<String>,
}Expand description
struct for passing parameters to the method list_project_members
Fields§
§project_name_or_id: StringThe name or id of the project
x_request_id: Option<String>An unique ID for the request
x_is_resource_name: Option<bool>The flag to indicate whether the parameter which supports both name and id in the path is the name of the resource. When the X-Is-Resource-Name is false and the parameter can be converted to an integer, the parameter will be as an id, otherwise, it will be as a name.
page: Option<i64>The page number
page_size: Option<i64>The size of per page
entityname: Option<String>The entity name to search.
Trait Implementations§
Source§impl Clone for ListProjectMembersParams
impl Clone for ListProjectMembersParams
Source§fn clone(&self) -> ListProjectMembersParams
fn clone(&self) -> ListProjectMembersParams
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 ListProjectMembersParams
impl RefUnwindSafe for ListProjectMembersParams
impl Send for ListProjectMembersParams
impl Sync for ListProjectMembersParams
impl Unpin for ListProjectMembersParams
impl UnwindSafe for ListProjectMembersParams
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