pub struct MoveTableToDatabaseRequest {
pub db_name: Option<String>,
pub destination_db_name: Option<String>,
pub table_name: Option<String>,
}Expand description
Request message for DataprocMetastore.MoveTableToDatabase.
§Activities
This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).
Fields§
§db_name: Option<String>Required. The name of the database where the table resides.
destination_db_name: Option<String>Required. The name of the database where the table should be moved.
table_name: Option<String>Required. The name of the table to be moved.
Trait Implementations§
Source§impl Clone for MoveTableToDatabaseRequest
impl Clone for MoveTableToDatabaseRequest
Source§fn clone(&self) -> MoveTableToDatabaseRequest
fn clone(&self) -> MoveTableToDatabaseRequest
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 MoveTableToDatabaseRequest
impl Debug for MoveTableToDatabaseRequest
Source§impl Default for MoveTableToDatabaseRequest
impl Default for MoveTableToDatabaseRequest
Source§fn default() -> MoveTableToDatabaseRequest
fn default() -> MoveTableToDatabaseRequest
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for MoveTableToDatabaseRequest
impl<'de> Deserialize<'de> for MoveTableToDatabaseRequest
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 RequestValue for MoveTableToDatabaseRequest
Auto Trait Implementations§
impl Freeze for MoveTableToDatabaseRequest
impl RefUnwindSafe for MoveTableToDatabaseRequest
impl Send for MoveTableToDatabaseRequest
impl Sync for MoveTableToDatabaseRequest
impl Unpin for MoveTableToDatabaseRequest
impl UnwindSafe for MoveTableToDatabaseRequest
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