pub struct StatusMapping {
pub issue_type_id: String,
pub status_id: String,
pub new_status_id: String,
}
Expand description
StatusMapping : Details about the mapping from a status to a new status for an issue type.
Fields§
§issue_type_id: String
The ID of the issue type.
status_id: String
The ID of the status.
new_status_id: String
The ID of the new status.
Implementations§
Source§impl StatusMapping
impl StatusMapping
Trait Implementations§
Source§impl Clone for StatusMapping
impl Clone for StatusMapping
Source§fn clone(&self) -> StatusMapping
fn clone(&self) -> StatusMapping
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 StatusMapping
impl Debug for StatusMapping
Source§impl Default for StatusMapping
impl Default for StatusMapping
Source§fn default() -> StatusMapping
fn default() -> StatusMapping
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for StatusMapping
impl<'de> Deserialize<'de> for StatusMapping
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 StatusMapping
impl PartialEq for StatusMapping
Source§impl Serialize for StatusMapping
impl Serialize for StatusMapping
impl StructuralPartialEq for StatusMapping
Auto Trait Implementations§
impl Freeze for StatusMapping
impl RefUnwindSafe for StatusMapping
impl Send for StatusMapping
impl Sync for StatusMapping
impl Unpin for StatusMapping
impl UnwindSafe for StatusMapping
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