pub struct ListQuery {
pub project: Option<String>,
pub state: Option<String>,
pub ready: bool,
pub query: Option<String>,
pub limit: Option<usize>,
pub offset: Option<usize>,
}Expand description
Filters for crate::catalog::CatalogService::issues_rows.
Fields§
§project: Option<String>Restrict to this project name (case-insensitive).
state: Option<String>Restrict to this TODO keyword.
ready: boolKeep only TODO or STARTED issues with no open blocker.
query: Option<String>Case-insensitive substring over id, title, tags, and properties.
limit: Option<usize>Cap the result after sorting.
offset: Option<usize>Drop this many leading rows after sorting.
Trait Implementations§
impl Eq for ListQuery
impl StructuralPartialEq for ListQuery
Auto Trait Implementations§
impl Freeze for ListQuery
impl RefUnwindSafe for ListQuery
impl Send for ListQuery
impl Sync for ListQuery
impl Unpin for ListQuery
impl UnsafeUnpin for ListQuery
impl UnwindSafe for ListQuery
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,
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.