pub struct IssueEdit {
pub description: Option<String>,
pub key: Option<String>,
pub num: Option<i32>,
pub priority: Option<String>,
pub status: Option<String>,
pub title: Option<String>,
}Fields§
§description: Option<String>Description rewrites the body.
key: Option<String>Key is the board — the repository name, from the path.
num: Option<i32>Num is the issue number on that repository, from the path.
priority: Option<String>Priority re-prioritises it.
status: Option<String>Status moves the card to another column.
title: Option<String>Title renames the work item.
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for IssueEdit
impl<'de> Deserialize<'de> for IssueEdit
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
impl StructuralPartialEq for IssueEdit
Auto Trait Implementations§
impl Freeze for IssueEdit
impl RefUnwindSafe for IssueEdit
impl Send for IssueEdit
impl Sync for IssueEdit
impl Unpin for IssueEdit
impl UnsafeUnpin for IssueEdit
impl UnwindSafe for IssueEdit
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