pub struct ListedIssue {
pub author: Author,
pub title: String,
pub number: usize,
pub updated_at: DateTime<Utc>,
}Fields§
§title: String§number: usize§updated_at: DateTime<Utc>Trait Implementations§
Source§impl Debug for ListedIssue
impl Debug for ListedIssue
Source§impl<'de> Deserialize<'de> for ListedIssue
impl<'de> Deserialize<'de> for ListedIssue
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 ListedIssue
impl RefUnwindSafe for ListedIssue
impl Send for ListedIssue
impl Sync for ListedIssue
impl Unpin for ListedIssue
impl UnsafeUnpin for ListedIssue
impl UnwindSafe for ListedIssue
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