pub struct WorkspaceResponse {
pub workspace_base: WorkspaceBase,
pub email_domains: Option<Vec<String>>,
pub is_organization: Option<bool>,
}
Fields§
§workspace_base: WorkspaceBase
§email_domains: Option<Vec<String>>
The email domains that are associated with this workspace.
is_organization: Option<bool>
Whether the workspace is an organization.
Trait Implementations§
Source§impl Clone for WorkspaceResponse
impl Clone for WorkspaceResponse
Source§fn clone(&self) -> WorkspaceResponse
fn clone(&self) -> WorkspaceResponse
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 WorkspaceResponse
impl Debug for WorkspaceResponse
Source§impl Default for WorkspaceResponse
impl Default for WorkspaceResponse
Source§fn default() -> WorkspaceResponse
fn default() -> WorkspaceResponse
Returns the “default value” for a type. Read more
Source§impl Deref for WorkspaceResponse
impl Deref for WorkspaceResponse
Source§impl DerefMut for WorkspaceResponse
impl DerefMut for WorkspaceResponse
Source§impl<'de> Deserialize<'de> for WorkspaceResponse
impl<'de> Deserialize<'de> for WorkspaceResponse
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 Display for WorkspaceResponse
impl Display for WorkspaceResponse
Auto Trait Implementations§
impl Freeze for WorkspaceResponse
impl RefUnwindSafe for WorkspaceResponse
impl Send for WorkspaceResponse
impl Sync for WorkspaceResponse
impl Unpin for WorkspaceResponse
impl UnwindSafe for WorkspaceResponse
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