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