pub struct JiraInboxConfig {
pub enabled: bool,
pub poll_interval_secs: u64,
pub notify: bool,
pub custom_fields: Vec<JiraCustomField>,
pub sort_by_field: Option<String>,
}Expand description
Settings for polling assigned open Jira issues into the local inbox.
Fieldsยง
ยงenabled: boolWhether the watcher should poll Jira for open assigned issues.
poll_interval_secs: u64Seconds between Jira inbox polls (default 300 = 5 minutes).
notify: boolWhether to show a desktop toast when a new issue appears.
custom_fields: Vec<JiraCustomField>Extra Jira fields to fetch (custom fields such as Scoring).
sort_by_field: Option<String>Field id used for ranking (DESC), typically Scoring (customfield_โฆ).
Implementationsยง
Sourceยงimpl JiraInboxConfig
impl JiraInboxConfig
Sourcepub fn extra_field_ids(&self) -> Vec<String>
pub fn extra_field_ids(&self) -> Vec<String>
Field ids to request from Jira search (custom fields only).
Trait Implementationsยง
Sourceยงimpl Clone for JiraInboxConfig
impl Clone for JiraInboxConfig
Sourceยงfn clone(&self) -> JiraInboxConfig
fn clone(&self) -> JiraInboxConfig
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 JiraInboxConfig
impl Debug for JiraInboxConfig
Sourceยงimpl Default for JiraInboxConfig
impl Default for JiraInboxConfig
Sourceยงimpl<'de> Deserialize<'de> for JiraInboxConfig
impl<'de> Deserialize<'de> for JiraInboxConfig
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 JiraInboxConfig
impl PartialEq for JiraInboxConfig
Sourceยงimpl Serialize for JiraInboxConfig
impl Serialize for JiraInboxConfig
impl StructuralPartialEq for JiraInboxConfig
Auto Trait Implementationsยง
impl Freeze for JiraInboxConfig
impl RefUnwindSafe for JiraInboxConfig
impl Send for JiraInboxConfig
impl Sync for JiraInboxConfig
impl Unpin for JiraInboxConfig
impl UnsafeUnpin for JiraInboxConfig
impl UnwindSafe for JiraInboxConfig
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