pub struct SourceObjectIdentifier {
pub database: Option<String>,
pub schema: Option<String>,
pub table: Option<String>,
pub type_: Option<String>,
}Expand description
An identifier for the Migration Job Object.
This type is not used in any activity, and only used as part of another schema.
Fields§
§database: Option<String>Optional. The database name. This will be required only if the object uses a database name as part of its unique identifier.
schema: Option<String>Optional. The schema name. This will be required only if the object uses a schema name as part of its unique identifier.
table: Option<String>Optional. The table name. This will be required only if the object is a level below database or schema.
type_: Option<String>Required. The type of the migration job object.
Trait Implementations§
Source§impl Clone for SourceObjectIdentifier
impl Clone for SourceObjectIdentifier
Source§fn clone(&self) -> SourceObjectIdentifier
fn clone(&self) -> SourceObjectIdentifier
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 SourceObjectIdentifier
impl Debug for SourceObjectIdentifier
Source§impl Default for SourceObjectIdentifier
impl Default for SourceObjectIdentifier
Source§fn default() -> SourceObjectIdentifier
fn default() -> SourceObjectIdentifier
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SourceObjectIdentifier
impl<'de> Deserialize<'de> for SourceObjectIdentifier
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 Serialize for SourceObjectIdentifier
impl Serialize for SourceObjectIdentifier
impl Part for SourceObjectIdentifier
Auto Trait Implementations§
impl Freeze for SourceObjectIdentifier
impl RefUnwindSafe for SourceObjectIdentifier
impl Send for SourceObjectIdentifier
impl Sync for SourceObjectIdentifier
impl Unpin for SourceObjectIdentifier
impl UnwindSafe for SourceObjectIdentifier
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