pub struct Issue {
pub id: u64,
pub iid: u64,
pub title: String,
pub description: Option<String>,
pub state: String,
pub author: User,
pub assignee: Option<User>,
pub labels: Vec<String>,
pub web_url: String,
pub created_at: String,
pub updated_at: String,
pub closed_at: Option<String>,
}Expand description
Issue in GitLab.
Fields§
§id: u64§iid: u64§title: String§description: Option<String>§state: String§assignee: Option<User>§labels: Vec<String>§web_url: String§created_at: String§updated_at: String§closed_at: Option<String>Trait Implementations§
Source§impl<'de> Deserialize<'de> for Issue
impl<'de> Deserialize<'de> for Issue
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
Auto Trait Implementations§
impl Freeze for Issue
impl RefUnwindSafe for Issue
impl Send for Issue
impl Sync for Issue
impl Unpin for Issue
impl UnwindSafe for Issue
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