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