pub struct JiraDevProvider {
pub instance_type: String,
pub name: String,
}Expand description
A development-info provider that has data for a JIRA issue, as reported by
the DevStatus summary endpoint’s byInstanceType map.
Fields§
§instance_type: StringInstance-type identifier — the value the detail endpoint expects as
applicationType (e.g. “stash”, “bitbucket”, “GitHub”). This is the
round-trip key; do not substitute the display name here.
name: StringHuman-readable display name (e.g. “Bitbucket Server”, “GitHub”).
Trait Implementations§
Source§impl Clone for JiraDevProvider
impl Clone for JiraDevProvider
Source§fn clone(&self) -> JiraDevProvider
fn clone(&self) -> JiraDevProvider
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 JiraDevProvider
impl Debug for JiraDevProvider
impl Eq for JiraDevProvider
Source§impl PartialEq for JiraDevProvider
impl PartialEq for JiraDevProvider
Source§fn eq(&self, other: &JiraDevProvider) -> bool
fn eq(&self, other: &JiraDevProvider) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for JiraDevProvider
impl Serialize for JiraDevProvider
impl StructuralPartialEq for JiraDevProvider
Auto Trait Implementations§
impl Freeze for JiraDevProvider
impl RefUnwindSafe for JiraDevProvider
impl Send for JiraDevProvider
impl Sync for JiraDevProvider
impl Unpin for JiraDevProvider
impl UnsafeUnpin for JiraDevProvider
impl UnwindSafe for JiraDevProvider
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.