pub struct ListWorkspacesResponse {
pub data: Vec<Workspace>,
pub total_count: u64,
}Expand description
Response from GET /workspaces.
Fields§
§data: Vec<Workspace>Workspace rows.
total_count: u64Total row count, ignoring pagination.
Trait Implementations§
Source§impl Clone for ListWorkspacesResponse
impl Clone for ListWorkspacesResponse
Source§fn clone(&self) -> ListWorkspacesResponse
fn clone(&self) -> ListWorkspacesResponse
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 Debug for ListWorkspacesResponse
impl Debug for ListWorkspacesResponse
Source§impl Default for ListWorkspacesResponse
impl Default for ListWorkspacesResponse
Source§fn default() -> ListWorkspacesResponse
fn default() -> ListWorkspacesResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ListWorkspacesResponse
impl<'de> Deserialize<'de> for ListWorkspacesResponse
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for ListWorkspacesResponse
impl PartialEq for ListWorkspacesResponse
Source§impl Serialize for ListWorkspacesResponse
impl Serialize for ListWorkspacesResponse
impl StructuralPartialEq for ListWorkspacesResponse
Auto Trait Implementations§
impl Freeze for ListWorkspacesResponse
impl RefUnwindSafe for ListWorkspacesResponse
impl Send for ListWorkspacesResponse
impl Sync for ListWorkspacesResponse
impl Unpin for ListWorkspacesResponse
impl UnsafeUnpin for ListWorkspacesResponse
impl UnwindSafe for ListWorkspacesResponse
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