pub struct BulkIssueIsWatching {
pub issues_is_watching: Option<HashMap<String, bool>>,
}
Expand description
BulkIssueIsWatching : A container for the watch status of a list of issues.
Fields§
§issues_is_watching: Option<HashMap<String, bool>>
The map of issue ID to boolean watch status.
Implementations§
Source§impl BulkIssueIsWatching
impl BulkIssueIsWatching
Sourcepub fn new() -> BulkIssueIsWatching
pub fn new() -> BulkIssueIsWatching
A container for the watch status of a list of issues.
Trait Implementations§
Source§impl Clone for BulkIssueIsWatching
impl Clone for BulkIssueIsWatching
Source§fn clone(&self) -> BulkIssueIsWatching
fn clone(&self) -> BulkIssueIsWatching
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 BulkIssueIsWatching
impl Debug for BulkIssueIsWatching
Source§impl Default for BulkIssueIsWatching
impl Default for BulkIssueIsWatching
Source§fn default() -> BulkIssueIsWatching
fn default() -> BulkIssueIsWatching
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for BulkIssueIsWatching
impl<'de> Deserialize<'de> for BulkIssueIsWatching
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 BulkIssueIsWatching
impl PartialEq for BulkIssueIsWatching
Source§impl Serialize for BulkIssueIsWatching
impl Serialize for BulkIssueIsWatching
impl StructuralPartialEq for BulkIssueIsWatching
Auto Trait Implementations§
impl Freeze for BulkIssueIsWatching
impl RefUnwindSafe for BulkIssueIsWatching
impl Send for BulkIssueIsWatching
impl Sync for BulkIssueIsWatching
impl Unpin for BulkIssueIsWatching
impl UnwindSafe for BulkIssueIsWatching
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