pub struct MigrateWorkspaceResult {
pub source_workspace_id: Option<String>,
pub target_workspace_id: Option<String>,
}Fields§
§source_workspace_id: Option<String>The original identifier of the WorkSpace that is being migrated.
target_workspace_id: Option<String>The new identifier of the WorkSpace that is being migrated. If the migration does not succeed, the target WorkSpace ID will not be used, and the WorkSpace will still have the original WorkSpace ID.
Trait Implementations§
Source§impl Clone for MigrateWorkspaceResult
impl Clone for MigrateWorkspaceResult
Source§fn clone(&self) -> MigrateWorkspaceResult
fn clone(&self) -> MigrateWorkspaceResult
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 MigrateWorkspaceResult
impl Debug for MigrateWorkspaceResult
Source§impl Default for MigrateWorkspaceResult
impl Default for MigrateWorkspaceResult
Source§fn default() -> MigrateWorkspaceResult
fn default() -> MigrateWorkspaceResult
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for MigrateWorkspaceResult
impl<'de> Deserialize<'de> for MigrateWorkspaceResult
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 PartialEq for MigrateWorkspaceResult
impl PartialEq for MigrateWorkspaceResult
impl StructuralPartialEq for MigrateWorkspaceResult
Auto Trait Implementations§
impl Freeze for MigrateWorkspaceResult
impl RefUnwindSafe for MigrateWorkspaceResult
impl Send for MigrateWorkspaceResult
impl Sync for MigrateWorkspaceResult
impl Unpin for MigrateWorkspaceResult
impl UnwindSafe for MigrateWorkspaceResult
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