pub struct CreateExclusionRulesRequest {
pub issue_ids: Option<Vec<i64>>,
pub issue_type_ids: Option<Vec<i64>>,
pub number_of_days_to_show_completed_issues: Option<i32>,
pub release_ids: Option<Vec<i64>>,
pub work_status_category_ids: Option<Vec<i64>>,
pub work_status_ids: Option<Vec<i64>>,
}
Fields§
§issue_ids: Option<Vec<i64>>
The IDs of the issues to exclude from the plan.
issue_type_ids: Option<Vec<i64>>
The IDs of the issue types to exclude from the plan.
number_of_days_to_show_completed_issues: Option<i32>
Issues completed this number of days ago will be excluded from the plan.
release_ids: Option<Vec<i64>>
The IDs of the releases to exclude from the plan.
work_status_category_ids: Option<Vec<i64>>
The IDs of the work status categories to exclude from the plan.
work_status_ids: Option<Vec<i64>>
The IDs of the work statuses to exclude from the plan.
Implementations§
Source§impl CreateExclusionRulesRequest
impl CreateExclusionRulesRequest
pub fn new() -> CreateExclusionRulesRequest
Trait Implementations§
Source§impl Clone for CreateExclusionRulesRequest
impl Clone for CreateExclusionRulesRequest
Source§fn clone(&self) -> CreateExclusionRulesRequest
fn clone(&self) -> CreateExclusionRulesRequest
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 CreateExclusionRulesRequest
impl Debug for CreateExclusionRulesRequest
Source§impl Default for CreateExclusionRulesRequest
impl Default for CreateExclusionRulesRequest
Source§fn default() -> CreateExclusionRulesRequest
fn default() -> CreateExclusionRulesRequest
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CreateExclusionRulesRequest
impl<'de> Deserialize<'de> for CreateExclusionRulesRequest
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
impl StructuralPartialEq for CreateExclusionRulesRequest
Auto Trait Implementations§
impl Freeze for CreateExclusionRulesRequest
impl RefUnwindSafe for CreateExclusionRulesRequest
impl Send for CreateExclusionRulesRequest
impl Sync for CreateExclusionRulesRequest
impl Unpin for CreateExclusionRulesRequest
impl UnwindSafe for CreateExclusionRulesRequest
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