pub struct ChangesParams {
pub limit: Option<u32>,
pub offset: Option<u32>,
pub bot: Option<bool>,
}Expand description
Parameters for the recent-changes endpoints.
Fields§
§limit: Option<u32>§offset: Option<u32>§bot: Option<bool>If Some(true), include bot edits; if Some(false), exclude them.
Trait Implementations§
Source§impl Clone for ChangesParams
impl Clone for ChangesParams
Source§fn clone(&self) -> ChangesParams
fn clone(&self) -> ChangesParams
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 ChangesParams
impl Debug for ChangesParams
Source§impl Default for ChangesParams
impl Default for ChangesParams
Source§fn default() -> ChangesParams
fn default() -> ChangesParams
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ChangesParams
impl RefUnwindSafe for ChangesParams
impl Send for ChangesParams
impl Sync for ChangesParams
impl Unpin for ChangesParams
impl UnsafeUnpin for ChangesParams
impl UnwindSafe for ChangesParams
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