pub struct PostWorkspacesBodyWorkspace {
pub description: Option<String>,
pub name: String,
pub post_workspaces_body_workspace_type: VisibilityEnum,
}
Fields§
§description: Option<String>
The workspace’s description.
name: String
The workspace’s name.
post_workspaces_body_workspace_type: VisibilityEnum
The type of workspace:
personal
private
— Private workspaces are available on Postman Professional and Enterprise plans.public
team
partner
— Partner Workspaces are available on Postman Enterprise Ultimate plans.
Trait Implementations§
Source§impl Clone for PostWorkspacesBodyWorkspace
impl Clone for PostWorkspacesBodyWorkspace
Source§fn clone(&self) -> PostWorkspacesBodyWorkspace
fn clone(&self) -> PostWorkspacesBodyWorkspace
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 PostWorkspacesBodyWorkspace
impl Debug for PostWorkspacesBodyWorkspace
Source§impl<'de> Deserialize<'de> for PostWorkspacesBodyWorkspace
impl<'de> Deserialize<'de> for PostWorkspacesBodyWorkspace
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
impl StructuralPartialEq for PostWorkspacesBodyWorkspace
Auto Trait Implementations§
impl Freeze for PostWorkspacesBodyWorkspace
impl RefUnwindSafe for PostWorkspacesBodyWorkspace
impl Send for PostWorkspacesBodyWorkspace
impl Sync for PostWorkspacesBodyWorkspace
impl Unpin for PostWorkspacesBodyWorkspace
impl UnwindSafe for PostWorkspacesBodyWorkspace
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