pub struct WorkspaceListRequest {
pub include_archived: Option<bool>,
pub before_id: Option<String>,
pub after_id: Option<String>,
pub limit: Option<u32>,
pub credentials: Option<Credentials>,
}Expand description
Request parameters for listing workspaces.
Fields§
§include_archived: Option<bool>Whether to include workspaces that have been archived in the response
before_id: Option<String>ID of the object to use as a cursor for pagination (previous page)
after_id: Option<String>ID of the object to use as a cursor for pagination (next page)
limit: Option<u32>Number of items to return per page (1-1000)
credentials: Option<Credentials>Credentials for authentication (not serialized)
Trait Implementations§
Source§impl Clone for WorkspaceListRequest
impl Clone for WorkspaceListRequest
Source§fn clone(&self) -> WorkspaceListRequest
fn clone(&self) -> WorkspaceListRequest
Returns a copy of the value. Read more
1.0.0 · 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 WorkspaceListRequest
impl Debug for WorkspaceListRequest
Auto Trait Implementations§
impl Freeze for WorkspaceListRequest
impl RefUnwindSafe for WorkspaceListRequest
impl Send for WorkspaceListRequest
impl Sync for WorkspaceListRequest
impl Unpin for WorkspaceListRequest
impl UnwindSafe for WorkspaceListRequest
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