pub struct IssueIndexEntry {
pub id: String,
pub identifier: String,
pub team_key: String,
pub title: String,
pub state_name: String,
pub state_type: String,
pub created_at: String,
pub updated_at: String,
pub archived_at: Option<String>,
pub url: String,
}Fields§
§id: String§identifier: String§team_key: String§title: String§state_name: String§state_type: String§created_at: String§updated_at: String§archived_at: Option<String>§url: StringTrait Implementations§
Source§impl Clone for IssueIndexEntry
impl Clone for IssueIndexEntry
Source§fn clone(&self) -> IssueIndexEntry
fn clone(&self) -> IssueIndexEntry
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for IssueIndexEntry
impl RefUnwindSafe for IssueIndexEntry
impl Send for IssueIndexEntry
impl Sync for IssueIndexEntry
impl Unpin for IssueIndexEntry
impl UnsafeUnpin for IssueIndexEntry
impl UnwindSafe for IssueIndexEntry
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