#[non_exhaustive]pub struct DeleteConversionWorkspaceRequest {
pub name: String,
pub request_id: String,
pub force: bool,
/* private fields */
}Expand description
Request message for ‘DeleteConversionWorkspace’ request.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.name: StringRequired. Name of the conversion workspace resource to delete.
request_id: StringA unique ID used to identify the request. If the server receives two requests with the same ID, then the second request is ignored.
It is recommended to always set this value to a UUID.
The ID must contain only letters (a-z, A-Z), numbers (0-9), underscores (_), and hyphens (-). The maximum length is 40 characters.
force: boolForce delete the conversion workspace, even if there’s a running migration that is using the workspace.
Implementations§
Trait Implementations§
Source§impl Clone for DeleteConversionWorkspaceRequest
impl Clone for DeleteConversionWorkspaceRequest
Source§fn clone(&self) -> DeleteConversionWorkspaceRequest
fn clone(&self) -> DeleteConversionWorkspaceRequest
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 Default for DeleteConversionWorkspaceRequest
impl Default for DeleteConversionWorkspaceRequest
Source§fn default() -> DeleteConversionWorkspaceRequest
fn default() -> DeleteConversionWorkspaceRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for DeleteConversionWorkspaceRequest
impl PartialEq for DeleteConversionWorkspaceRequest
Source§fn eq(&self, other: &DeleteConversionWorkspaceRequest) -> bool
fn eq(&self, other: &DeleteConversionWorkspaceRequest) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for DeleteConversionWorkspaceRequest
Auto Trait Implementations§
impl Freeze for DeleteConversionWorkspaceRequest
impl RefUnwindSafe for DeleteConversionWorkspaceRequest
impl Send for DeleteConversionWorkspaceRequest
impl Sync for DeleteConversionWorkspaceRequest
impl Unpin for DeleteConversionWorkspaceRequest
impl UnwindSafe for DeleteConversionWorkspaceRequest
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