pub struct ListWorkspacesOptions {
pub offset: Option<u32>,
pub limit: Option<u32>,
}Expand description
Optional query parameters for crate::Client::list_workspaces.
Fields§
§offset: Option<u32>Skip this many rows before returning results.
limit: Option<u32>Cap on the number of rows returned.
Implementations§
Source§impl ListWorkspacesOptions
impl ListWorkspacesOptions
Sourcepub fn offset(self, offset: u32) -> Self
pub fn offset(self, offset: u32) -> Self
Builder: set Self::offset.
Sourcepub fn limit(self, limit: u32) -> Self
pub fn limit(self, limit: u32) -> Self
Builder: set Self::limit.
Trait Implementations§
Source§impl Clone for ListWorkspacesOptions
impl Clone for ListWorkspacesOptions
Source§fn clone(&self) -> ListWorkspacesOptions
fn clone(&self) -> ListWorkspacesOptions
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 moreimpl Copy for ListWorkspacesOptions
Source§impl Debug for ListWorkspacesOptions
impl Debug for ListWorkspacesOptions
Source§impl Default for ListWorkspacesOptions
impl Default for ListWorkspacesOptions
Source§fn default() -> ListWorkspacesOptions
fn default() -> ListWorkspacesOptions
Returns the “default value” for a type. Read more
impl Eq for ListWorkspacesOptions
Source§impl PartialEq for ListWorkspacesOptions
impl PartialEq for ListWorkspacesOptions
impl StructuralPartialEq for ListWorkspacesOptions
Auto Trait Implementations§
impl Freeze for ListWorkspacesOptions
impl RefUnwindSafe for ListWorkspacesOptions
impl Send for ListWorkspacesOptions
impl Sync for ListWorkspacesOptions
impl Unpin for ListWorkspacesOptions
impl UnsafeUnpin for ListWorkspacesOptions
impl UnwindSafe for ListWorkspacesOptions
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