pub struct BinaryLogParser {
pub log_file_directories: Option<LogFileDirectories>,
pub oracle_asm_log_file_access: Option<OracleAsmLogFileAccess>,
}Expand description
Configuration to use Binary Log Parser CDC technique.
This type is not used in any activity, and only used as part of another schema.
Fields§
§log_file_directories: Option<LogFileDirectories>Use Oracle directories.
oracle_asm_log_file_access: Option<OracleAsmLogFileAccess>Use Oracle ASM.
Trait Implementations§
Source§impl Clone for BinaryLogParser
impl Clone for BinaryLogParser
Source§fn clone(&self) -> BinaryLogParser
fn clone(&self) -> BinaryLogParser
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 BinaryLogParser
impl Debug for BinaryLogParser
Source§impl Default for BinaryLogParser
impl Default for BinaryLogParser
Source§fn default() -> BinaryLogParser
fn default() -> BinaryLogParser
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for BinaryLogParser
impl<'de> Deserialize<'de> for BinaryLogParser
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 BinaryLogParser
impl Serialize for BinaryLogParser
impl Part for BinaryLogParser
Auto Trait Implementations§
impl Freeze for BinaryLogParser
impl RefUnwindSafe for BinaryLogParser
impl Send for BinaryLogParser
impl Sync for BinaryLogParser
impl Unpin for BinaryLogParser
impl UnwindSafe for BinaryLogParser
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