pub struct ListWorkspaces {
pub has_next_page: bool,
pub next_page_token: String,
pub workspaces: Vec<Workspace>,
}Fields§
§has_next_page: bool§next_page_token: String§workspaces: Vec<Workspace>Implementations§
Trait Implementations§
Source§impl Clone for ListWorkspaces
impl Clone for ListWorkspaces
Source§fn clone(&self) -> ListWorkspaces
fn clone(&self) -> ListWorkspaces
Returns a duplicate 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 ListWorkspaces
impl Debug for ListWorkspaces
Source§impl Default for ListWorkspaces
impl Default for ListWorkspaces
Source§fn default() -> ListWorkspaces
fn default() -> ListWorkspaces
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ListWorkspaces
impl<'de> Deserialize<'de> for ListWorkspaces
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 ListWorkspaces
impl PartialEq for ListWorkspaces
Source§impl Serialize for ListWorkspaces
impl Serialize for ListWorkspaces
impl StructuralPartialEq for ListWorkspaces
Auto Trait Implementations§
impl Freeze for ListWorkspaces
impl RefUnwindSafe for ListWorkspaces
impl Send for ListWorkspaces
impl Sync for ListWorkspaces
impl Unpin for ListWorkspaces
impl UnwindSafe for ListWorkspaces
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