pub struct IssueEntry {
pub number: u64,
pub title: String,
pub state: IssueState,
pub author: String,
pub created_at: u64,
pub thread: Vec<ThreadPointer>,
}Expand description
One issue’s spine entry (title + state + author + thread pointers).
Fields§
§number: u64Allocated issue number.
title: StringHuman title (kept in the spine for cheap listing/search).
state: IssueStateLifecycle state.
Author id (WebID or did:nostr:<hex>).
created_at: u64Unix seconds of creation.
thread: Vec<ThreadPointer>Ordered thread pointers (the opening body is index 0).
Trait Implementations§
Source§impl Clone for IssueEntry
impl Clone for IssueEntry
Source§fn clone(&self) -> IssueEntry
fn clone(&self) -> IssueEntry
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 IssueEntry
impl Debug for IssueEntry
Source§impl<'de> Deserialize<'de> for IssueEntry
impl<'de> Deserialize<'de> for IssueEntry
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 Eq for IssueEntry
Source§impl PartialEq for IssueEntry
impl PartialEq for IssueEntry
Source§impl Serialize for IssueEntry
impl Serialize for IssueEntry
impl StructuralPartialEq for IssueEntry
Auto Trait Implementations§
impl Freeze for IssueEntry
impl RefUnwindSafe for IssueEntry
impl Send for IssueEntry
impl Sync for IssueEntry
impl Unpin for IssueEntry
impl UnsafeUnpin for IssueEntry
impl UnwindSafe for IssueEntry
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