pub struct IssueListResult {
pub issues: Vec<IssueRow>,
pub total: u64,
pub matched: u64,
pub revision: u64,
pub generation: u64,
pub unchanged: bool,
}Expand description
Page of issue rows, or an unchanged marker.
Fields§
§issues: Vec<IssueRow>Matching rows. Empty when Self::unchanged.
total: u64Issues in the selected project (or whole vault) before other filters.
matched: u64Rows matching state, ready, and query, before limit and offset.
revision: u64Current serve revision.
generation: u64Current on-disk generation.
unchanged: boolsince_revision matched; issues is empty.
Trait Implementations§
Source§impl Clone for IssueListResult
impl Clone for IssueListResult
Source§fn clone(&self) -> IssueListResult
fn clone(&self) -> IssueListResult
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 IssueListResult
impl Debug for IssueListResult
Source§impl Default for IssueListResult
impl Default for IssueListResult
Source§fn default() -> IssueListResult
fn default() -> IssueListResult
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for IssueListResult
impl<'de> Deserialize<'de> for IssueListResult
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 IssueListResult
Source§impl PartialEq for IssueListResult
impl PartialEq for IssueListResult
Source§impl Serialize for IssueListResult
impl Serialize for IssueListResult
impl StructuralPartialEq for IssueListResult
Auto Trait Implementations§
impl Freeze for IssueListResult
impl RefUnwindSafe for IssueListResult
impl Send for IssueListResult
impl Sync for IssueListResult
impl Unpin for IssueListResult
impl UnsafeUnpin for IssueListResult
impl UnwindSafe for IssueListResult
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.