pub struct MySqlSource {
pub tabular_source: TabularSource,
pub query: Option<Value>,
}Expand description
A copy activity source for MySQL databases.
Fields§
§tabular_source: TabularSource§query: Option<Value>Database query. Type: string (or Expression with resultType string).
Implementations§
Source§impl MySqlSource
impl MySqlSource
pub fn new(tabular_source: TabularSource) -> Self
Trait Implementations§
Source§impl Clone for MySqlSource
impl Clone for MySqlSource
Source§fn clone(&self) -> MySqlSource
fn clone(&self) -> MySqlSource
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 MySqlSource
impl Debug for MySqlSource
Source§impl<'de> Deserialize<'de> for MySqlSource
impl<'de> Deserialize<'de> for MySqlSource
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 MySqlSource
impl PartialEq for MySqlSource
Source§impl Serialize for MySqlSource
impl Serialize for MySqlSource
impl StructuralPartialEq for MySqlSource
Auto Trait Implementations§
impl Freeze for MySqlSource
impl RefUnwindSafe for MySqlSource
impl Send for MySqlSource
impl Sync for MySqlSource
impl Unpin for MySqlSource
impl UnwindSafe for MySqlSource
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