pub struct BaseConnectorConfiguration {
pub data: Option<HashMap<String, Value>>,
pub debug: Option<bool>,
pub id: Option<Uuid>,
pub insert_instant: Option<i64>,
pub last_update_instant: Option<i64>,
pub name: Option<String>,
pub type: Option<ConnectorType>,
}
Expand description
BaseConnectorConfiguration : Do not require a setter for ‘type’, it is defined by the concrete class and is not mutable
Fields§
§data: Option<HashMap<String, Value>>
§debug: Option<bool>
§id: Option<Uuid>
§insert_instant: Option<i64>
The number of milliseconds since the unix epoch: January 1, 1970 00:00:00 UTC. This value is always in UTC.
last_update_instant: Option<i64>
The number of milliseconds since the unix epoch: January 1, 1970 00:00:00 UTC. This value is always in UTC.
name: Option<String>
§type: Option<ConnectorType>
Implementations§
Source§impl BaseConnectorConfiguration
impl BaseConnectorConfiguration
Sourcepub fn new() -> BaseConnectorConfiguration
pub fn new() -> BaseConnectorConfiguration
Do not require a setter for ‘type’, it is defined by the concrete class and is not mutable
Trait Implementations§
Source§impl Clone for BaseConnectorConfiguration
impl Clone for BaseConnectorConfiguration
Source§fn clone(&self) -> BaseConnectorConfiguration
fn clone(&self) -> BaseConnectorConfiguration
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for BaseConnectorConfiguration
impl Debug for BaseConnectorConfiguration
Source§impl Default for BaseConnectorConfiguration
impl Default for BaseConnectorConfiguration
Source§fn default() -> BaseConnectorConfiguration
fn default() -> BaseConnectorConfiguration
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for BaseConnectorConfiguration
impl<'de> Deserialize<'de> for BaseConnectorConfiguration
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 StructuralPartialEq for BaseConnectorConfiguration
Auto Trait Implementations§
impl Freeze for BaseConnectorConfiguration
impl RefUnwindSafe for BaseConnectorConfiguration
impl Send for BaseConnectorConfiguration
impl Sync for BaseConnectorConfiguration
impl Unpin for BaseConnectorConfiguration
impl UnwindSafe for BaseConnectorConfiguration
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