Struct google_datastream1::api::MysqlTable
source · pub struct MysqlTable {
pub mysql_columns: Option<Vec<MysqlColumn>>,
pub table: Option<String>,
}
Expand description
MySQL table.
This type is not used in any activity, and only used as part of another schema.
Fields§
§mysql_columns: Option<Vec<MysqlColumn>>
MySQL columns in the database. When unspecified as part of include/exclude objects, includes/excludes everything.
table: Option<String>
Table name.
Trait Implementations§
source§impl Clone for MysqlTable
impl Clone for MysqlTable
source§fn clone(&self) -> MysqlTable
fn clone(&self) -> MysqlTable
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 MysqlTable
impl Debug for MysqlTable
source§impl Default for MysqlTable
impl Default for MysqlTable
source§fn default() -> MysqlTable
fn default() -> MysqlTable
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for MysqlTable
impl<'de> Deserialize<'de> for MysqlTable
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 MysqlTable
impl Serialize for MysqlTable
impl Part for MysqlTable
Auto Trait Implementations§
impl RefUnwindSafe for MysqlTable
impl Send for MysqlTable
impl Sync for MysqlTable
impl Unpin for MysqlTable
impl UnwindSafe for MysqlTable
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