pub struct JiraWatcherList {
pub watchers: Vec<JiraUser>,
pub watch_count: u32,
}Expand description
Result from listing watchers on a JIRA issue.
Fields§
§watchers: Vec<JiraUser>Watchers on the issue.
watch_count: u32Total number of watchers.
Trait Implementations§
Source§impl Clone for JiraWatcherList
impl Clone for JiraWatcherList
Source§fn clone(&self) -> JiraWatcherList
fn clone(&self) -> JiraWatcherList
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 JiraWatcherList
impl Debug for JiraWatcherList
Auto Trait Implementations§
impl Freeze for JiraWatcherList
impl RefUnwindSafe for JiraWatcherList
impl Send for JiraWatcherList
impl Sync for JiraWatcherList
impl Unpin for JiraWatcherList
impl UnsafeUnpin for JiraWatcherList
impl UnwindSafe for JiraWatcherList
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