pub struct GetAllRaidsParams {
pub name: Option<String>,
pub active: Option<bool>,
pub page: Option<u32>,
pub size: Option<u32>,
}Expand description
struct for passing parameters to the method get_all_raids
Fields§
§name: Option<String>Name of the raid.
active: Option<bool>Filter raids by active status.
page: Option<u32>Page number
size: Option<u32>Page size
Implementations§
Trait Implementations§
Source§impl Clone for GetAllRaidsParams
impl Clone for GetAllRaidsParams
Source§fn clone(&self) -> GetAllRaidsParams
fn clone(&self) -> GetAllRaidsParams
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 moreAuto Trait Implementations§
impl Freeze for GetAllRaidsParams
impl RefUnwindSafe for GetAllRaidsParams
impl Send for GetAllRaidsParams
impl Sync for GetAllRaidsParams
impl Unpin for GetAllRaidsParams
impl UnsafeUnpin for GetAllRaidsParams
impl UnwindSafe for GetAllRaidsParams
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