#[non_exhaustive]pub struct SpaceQueryInput<'a> {
pub filter_name: Option<&'a str>,
pub filter_is_public: Option<bool>,
pub position: Option<u64>,
pub limit: Option<u64>,
}Expand description
Input parameters for Space/query.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.filter_name: Option<&'a str>Filter by substring match on Space name.
filter_is_public: Option<bool>Filter to public (true) or non-public (false) Spaces.
position: Option<u64>Zero-based starting offset within the query result.
limit: Option<u64>Maximum number of ids to return.
Trait Implementations§
Source§impl<'a> Clone for SpaceQueryInput<'a>
impl<'a> Clone for SpaceQueryInput<'a>
Source§fn clone(&self) -> SpaceQueryInput<'a>
fn clone(&self) -> SpaceQueryInput<'a>
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<'a> Debug for SpaceQueryInput<'a>
impl<'a> Debug for SpaceQueryInput<'a>
Source§impl<'a> Default for SpaceQueryInput<'a>
impl<'a> Default for SpaceQueryInput<'a>
Source§fn default() -> SpaceQueryInput<'a>
fn default() -> SpaceQueryInput<'a>
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl<'a> Freeze for SpaceQueryInput<'a>
impl<'a> RefUnwindSafe for SpaceQueryInput<'a>
impl<'a> Send for SpaceQueryInput<'a>
impl<'a> Sync for SpaceQueryInput<'a>
impl<'a> Unpin for SpaceQueryInput<'a>
impl<'a> UnsafeUnpin for SpaceQueryInput<'a>
impl<'a> UnwindSafe for SpaceQueryInput<'a>
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