pub struct NewIssue {
pub description: Option<String>,
pub key: Option<String>,
pub priority: Option<String>,
pub status: Option<String>,
pub title: Option<String>,
}Fields§
§description: Option<String>Description becomes the issue body.
key: Option<String>Key is the board — the repository name, from the path.
priority: Option<String>Priority is one of none, urgent, high, medium or low.
status: Option<String>Status is the board column to open into: backlog, todo, in_progress, done or canceled. Empty opens into backlog.
title: Option<String>Title is the one line the card is read by on the board. Blank or whitespace is refused — an untitled card cannot be told apart from any other.
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for NewIssue
impl<'de> Deserialize<'de> for NewIssue
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 NewIssue
Auto Trait Implementations§
impl Freeze for NewIssue
impl RefUnwindSafe for NewIssue
impl Send for NewIssue
impl Sync for NewIssue
impl Unpin for NewIssue
impl UnsafeUnpin for NewIssue
impl UnwindSafe for NewIssue
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