pub struct ChangesetQueryParams {
pub bbox: Option<BoundingBox>,
pub user_id: Option<u64>,
pub display_name: Option<String>,
pub closed_after: Option<String>,
pub created_before: Option<String>,
pub open: Option<bool>,
pub closed: Option<bool>,
pub changeset_ids: Option<Vec<u64>>,
}
Fields§
§bbox: Option<BoundingBox>
§user_id: Option<u64>
§display_name: Option<String>
§closed_after: Option<String>
§created_before: Option<String>
§open: Option<bool>
§closed: Option<bool>
§changeset_ids: Option<Vec<u64>>
Trait Implementations§
Source§impl Debug for ChangesetQueryParams
impl Debug for ChangesetQueryParams
Source§impl Default for ChangesetQueryParams
impl Default for ChangesetQueryParams
Source§fn default() -> ChangesetQueryParams
fn default() -> ChangesetQueryParams
Returns the “default value” for a type. Read more
Source§impl PartialEq for ChangesetQueryParams
impl PartialEq for ChangesetQueryParams
impl StructuralPartialEq for ChangesetQueryParams
Auto Trait Implementations§
impl Freeze for ChangesetQueryParams
impl RefUnwindSafe for ChangesetQueryParams
impl Send for ChangesetQueryParams
impl Sync for ChangesetQueryParams
impl Unpin for ChangesetQueryParams
impl UnwindSafe for ChangesetQueryParams
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