pub enum Pagination {
Default,
Limit(u32),
Unlimited,
}
Expand description
Controls the upper limit of how many bugs the response from Bugzilla can contain:
Default
: Use the default settings of this instance, which sets an arbitrary limit on the number of bugs.Limit
: Use this upper limit instead.Unlimited
: Set the limit to 0, which disables the upper limit and returns all matching bugs.
Variants§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Pagination
impl RefUnwindSafe for Pagination
impl Send for Pagination
impl Sync for Pagination
impl Unpin for Pagination
impl UnwindSafe for Pagination
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