pub struct WorkflowTransitionProperty {
pub key: Option<String>,
pub value: String,
pub id: Option<String>,
}
Expand description
WorkflowTransitionProperty : Details about the server Jira is running on.
Fields§
§key: Option<String>
The key of the transition property. Also known as the name of the transition property.
value: String
The value of the transition property.
id: Option<String>
The ID of the transition property.
Implementations§
Source§impl WorkflowTransitionProperty
impl WorkflowTransitionProperty
Sourcepub fn new(value: String) -> WorkflowTransitionProperty
pub fn new(value: String) -> WorkflowTransitionProperty
Details about the server Jira is running on.
Trait Implementations§
Source§impl Clone for WorkflowTransitionProperty
impl Clone for WorkflowTransitionProperty
Source§fn clone(&self) -> WorkflowTransitionProperty
fn clone(&self) -> WorkflowTransitionProperty
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 WorkflowTransitionProperty
impl Debug for WorkflowTransitionProperty
Source§impl Default for WorkflowTransitionProperty
impl Default for WorkflowTransitionProperty
Source§fn default() -> WorkflowTransitionProperty
fn default() -> WorkflowTransitionProperty
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for WorkflowTransitionProperty
impl<'de> Deserialize<'de> for WorkflowTransitionProperty
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 WorkflowTransitionProperty
Auto Trait Implementations§
impl Freeze for WorkflowTransitionProperty
impl RefUnwindSafe for WorkflowTransitionProperty
impl Send for WorkflowTransitionProperty
impl Sync for WorkflowTransitionProperty
impl Unpin for WorkflowTransitionProperty
impl UnwindSafe for WorkflowTransitionProperty
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