pub struct Transitions {
pub expand: Option<String>,
pub transitions: Option<Vec<IssueTransition>>,
}
Expand description
Transitions : List of issue transitions.
Fields§
§expand: Option<String>
Expand options that include additional transitions details in the response.
transitions: Option<Vec<IssueTransition>>
List of issue transitions.
Implementations§
Source§impl Transitions
impl Transitions
Sourcepub fn new() -> Transitions
pub fn new() -> Transitions
List of issue transitions.
Trait Implementations§
Source§impl Clone for Transitions
impl Clone for Transitions
Source§fn clone(&self) -> Transitions
fn clone(&self) -> Transitions
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 Transitions
impl Debug for Transitions
Source§impl Default for Transitions
impl Default for Transitions
Source§fn default() -> Transitions
fn default() -> Transitions
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for Transitions
impl<'de> Deserialize<'de> for Transitions
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 Transitions
impl PartialEq for Transitions
Source§impl Serialize for Transitions
impl Serialize for Transitions
impl StructuralPartialEq for Transitions
Auto Trait Implementations§
impl Freeze for Transitions
impl RefUnwindSafe for Transitions
impl Send for Transitions
impl Sync for Transitions
impl Unpin for Transitions
impl UnwindSafe for Transitions
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