pub struct ConnectorQuery {
pub connector_type: ConnectorType,
pub query: InternalQuery,
pub connection_params: HashMap<String, String>,
}Expand description
Query to be executed by a specific connector
Fields§
§connector_type: ConnectorType§query: InternalQuery§connection_params: HashMap<String, String>Trait Implementations§
Source§impl Clone for ConnectorQuery
impl Clone for ConnectorQuery
Source§fn clone(&self) -> ConnectorQuery
fn clone(&self) -> ConnectorQuery
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 moreAuto Trait Implementations§
impl Freeze for ConnectorQuery
impl RefUnwindSafe for ConnectorQuery
impl Send for ConnectorQuery
impl Sync for ConnectorQuery
impl Unpin for ConnectorQuery
impl UnwindSafe for ConnectorQuery
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