pub struct DeleteAndReplaceVersionBean {
pub move_fix_issues_to: Option<i64>,
pub move_affected_issues_to: Option<i64>,
pub custom_field_replacement_list: Option<Vec<CustomFieldReplacement>>,
}
Fields§
§move_fix_issues_to: Option<i64>
The ID of the version to update fixVersion
to when the field contains the deleted version.
move_affected_issues_to: Option<i64>
The ID of the version to update affectedVersion
to when the field contains the deleted version.
custom_field_replacement_list: Option<Vec<CustomFieldReplacement>>
An array of custom field IDs (customFieldId
) and version IDs (moveTo
) to update when the fields contain the deleted version.
Implementations§
Source§impl DeleteAndReplaceVersionBean
impl DeleteAndReplaceVersionBean
pub fn new() -> DeleteAndReplaceVersionBean
Trait Implementations§
Source§impl Clone for DeleteAndReplaceVersionBean
impl Clone for DeleteAndReplaceVersionBean
Source§fn clone(&self) -> DeleteAndReplaceVersionBean
fn clone(&self) -> DeleteAndReplaceVersionBean
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 DeleteAndReplaceVersionBean
impl Debug for DeleteAndReplaceVersionBean
Source§impl Default for DeleteAndReplaceVersionBean
impl Default for DeleteAndReplaceVersionBean
Source§fn default() -> DeleteAndReplaceVersionBean
fn default() -> DeleteAndReplaceVersionBean
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DeleteAndReplaceVersionBean
impl<'de> Deserialize<'de> for DeleteAndReplaceVersionBean
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 DeleteAndReplaceVersionBean
Auto Trait Implementations§
impl Freeze for DeleteAndReplaceVersionBean
impl RefUnwindSafe for DeleteAndReplaceVersionBean
impl Send for DeleteAndReplaceVersionBean
impl Sync for DeleteAndReplaceVersionBean
impl Unpin for DeleteAndReplaceVersionBean
impl UnwindSafe for DeleteAndReplaceVersionBean
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