pub struct Priority {
pub param_self: Option<String>,
pub status_color: Option<String>,
pub description: Option<String>,
pub icon_url: Option<String>,
pub name: Option<String>,
pub id: Option<String>,
}
Expand description
Priority : An issue priority.
Fields§
§param_self: Option<String>
The URL of the issue priority.
status_color: Option<String>
The color used to indicate the issue priority.
description: Option<String>
The description of the issue priority.
icon_url: Option<String>
The URL of the icon for the issue priority.
name: Option<String>
The name of the issue priority.
id: Option<String>
The ID of the issue priority.
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Priority
impl<'de> Deserialize<'de> for Priority
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 Priority
Auto Trait Implementations§
impl Freeze for Priority
impl RefUnwindSafe for Priority
impl Send for Priority
impl Sync for Priority
impl Unpin for Priority
impl UnwindSafe for Priority
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