pub struct WorkspaceCreateRequest {
pub name: String,
pub credentials: Option<Credentials>,
}Expand description
Request parameters for creating a workspace.
Fields§
§name: StringName of the workspace
credentials: Option<Credentials>Credentials for authentication (not serialized)
Trait Implementations§
Source§impl Clone for WorkspaceCreateRequest
impl Clone for WorkspaceCreateRequest
Source§fn clone(&self) -> WorkspaceCreateRequest
fn clone(&self) -> WorkspaceCreateRequest
Returns a copy 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 WorkspaceCreateRequest
impl Debug for WorkspaceCreateRequest
Auto Trait Implementations§
impl Freeze for WorkspaceCreateRequest
impl RefUnwindSafe for WorkspaceCreateRequest
impl Send for WorkspaceCreateRequest
impl Sync for WorkspaceCreateRequest
impl Unpin for WorkspaceCreateRequest
impl UnwindSafe for WorkspaceCreateRequest
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