pub struct ListProjectsQuery {
pub limit: Option<u32>,
pub after: Option<String>,
pub include_archived: Option<bool>,
}Available on crate feature
administration-types only.Expand description
Query parameters for listing projects.
Fields§
§limit: Option<u32>A limit on the number of objects to be returned. Limit can range between 1 and 100, and the default is 20.
after: Option<String>A cursor for use in pagination. after is an object ID that defines your place in the
list.
include_archived: Option<bool>If true returns all projects including those that have been archived. Archived projects
are not included by default.
Trait Implementations§
Source§impl Clone for ListProjectsQuery
impl Clone for ListProjectsQuery
Source§fn clone(&self) -> ListProjectsQuery
fn clone(&self) -> ListProjectsQuery
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 ListProjectsQuery
impl Debug for ListProjectsQuery
Source§impl Default for ListProjectsQuery
impl Default for ListProjectsQuery
Source§fn default() -> ListProjectsQuery
fn default() -> ListProjectsQuery
Returns the “default value” for a type. Read more
Source§impl PartialEq for ListProjectsQuery
impl PartialEq for ListProjectsQuery
Source§impl Serialize for ListProjectsQuery
impl Serialize for ListProjectsQuery
impl StructuralPartialEq for ListProjectsQuery
Auto Trait Implementations§
impl Freeze for ListProjectsQuery
impl RefUnwindSafe for ListProjectsQuery
impl Send for ListProjectsQuery
impl Sync for ListProjectsQuery
impl Unpin for ListProjectsQuery
impl UnsafeUnpin for ListProjectsQuery
impl UnwindSafe for ListProjectsQuery
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