pub struct GetMyPermissionsParams {
pub project_key: Option<String>,
pub project_id: Option<String>,
pub issue_key: Option<String>,
pub issue_id: Option<String>,
pub permissions: Option<String>,
pub project_uuid: Option<String>,
pub project_configuration_uuid: Option<String>,
}
Expand description
struct for passing parameters to the method get_my_permissions
Fields§
§project_key: Option<String>
The key of project. Ignored if projectId
is provided.
project_id: Option<String>
The ID of project.
issue_key: Option<String>
The key of the issue. Ignored if issueId
is provided.
issue_id: Option<String>
The ID of the issue.
permissions: Option<String>
A list of permission keys. (Required) This parameter accepts a comma-separated list. To get the list of available permissions, use Get all permissions.
project_uuid: Option<String>
§project_configuration_uuid: Option<String>
Trait Implementations§
Source§impl Clone for GetMyPermissionsParams
impl Clone for GetMyPermissionsParams
Source§fn clone(&self) -> GetMyPermissionsParams
fn clone(&self) -> GetMyPermissionsParams
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 moreSource§impl Debug for GetMyPermissionsParams
impl Debug for GetMyPermissionsParams
Source§impl Default for GetMyPermissionsParams
impl Default for GetMyPermissionsParams
Source§fn default() -> GetMyPermissionsParams
fn default() -> GetMyPermissionsParams
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for GetMyPermissionsParams
impl RefUnwindSafe for GetMyPermissionsParams
impl Send for GetMyPermissionsParams
impl Sync for GetMyPermissionsParams
impl Unpin for GetMyPermissionsParams
impl UnwindSafe for GetMyPermissionsParams
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