pub struct ResolvedTransitionFields {
pub fields: BTreeMap<String, Value>,
pub comment_on_screen: bool,
}Expand description
The outcome of resolving transition-screen inputs.
Fields§
§fields: BTreeMap<String, Value>API-shaped fields payload keyed by stable JIRA field id, ready to be
sent in the transition body. Empty when no field inputs were supplied.
comment_on_screen: boolWhether the transition screen exposes a comment field. Callers use
this to decide whether a supplied comment rides in the transition body
(update.comment, atomic) or falls back to a separate comment post.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ResolvedTransitionFields
impl RefUnwindSafe for ResolvedTransitionFields
impl Send for ResolvedTransitionFields
impl Sync for ResolvedTransitionFields
impl Unpin for ResolvedTransitionFields
impl UnsafeUnpin for ResolvedTransitionFields
impl UnwindSafe for ResolvedTransitionFields
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