pub struct DmExporter {
pub userid: String,
pub table_name: String,
pub control_file: String,
pub log_dir: String,
}Fields§
§userid: StringDM 数据库连接字符串 (例如: SYSDBA/SYSDBA@localhost:5236)
table_name: String表名
control_file: String控制文件路径
log_dir: String日志目录
Trait Implementations§
Source§impl Clone for DmExporter
impl Clone for DmExporter
Source§fn clone(&self) -> DmExporter
fn clone(&self) -> DmExporter
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 DmExporter
impl Debug for DmExporter
Source§impl Default for DmExporter
Available on crate feature dm only.
impl Default for DmExporter
Available on crate feature
dm only.Source§impl<'de> Deserialize<'de> for DmExporter
impl<'de> Deserialize<'de> for DmExporter
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
Auto Trait Implementations§
impl Freeze for DmExporter
impl RefUnwindSafe for DmExporter
impl Send for DmExporter
impl Sync for DmExporter
impl Unpin for DmExporter
impl UnsafeUnpin for DmExporter
impl UnwindSafe for DmExporter
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more