pub struct AssignedIssue {
pub display_id: String,
pub repository: String,
pub title: String,
pub updated_at: Option<String>,
pub web_url: String,
}Expand description
Normalized row for one open GitHub issue assigned to the authenticated user.
Fields§
§display_id: StringProvider display id such as GitHub #123.
repository: StringRepository path shown for the issue, such as owner/repo.
title: StringRemote issue title.
updated_at: Option<String>Provider update timestamp, when the CLI returns one.
web_url: StringBrowser-openable issue URL.
Trait Implementations§
Source§impl Clone for AssignedIssue
impl Clone for AssignedIssue
Source§fn clone(&self) -> AssignedIssue
fn clone(&self) -> AssignedIssue
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 moreSource§impl Debug for AssignedIssue
impl Debug for AssignedIssue
impl Eq for AssignedIssue
Source§impl PartialEq for AssignedIssue
impl PartialEq for AssignedIssue
impl StructuralPartialEq for AssignedIssue
Auto Trait Implementations§
impl Freeze for AssignedIssue
impl RefUnwindSafe for AssignedIssue
impl Send for AssignedIssue
impl Sync for AssignedIssue
impl Unpin for AssignedIssue
impl UnsafeUnpin for AssignedIssue
impl UnwindSafe for AssignedIssue
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