pub struct DestructiveSyncResult {
pub executed_ddl: Vec<String>,
pub hooks_called: usize,
pub audit_entries: usize,
}Expand description
破坏性同步结果(v2.2.0 B-2)
Fields§
§executed_ddl: Vec<String>执行的 DDL 语句列表
hooks_called: usize调用的钩子次数
audit_entries: usize审计日志条目数
Trait Implementations§
Source§impl Clone for DestructiveSyncResult
impl Clone for DestructiveSyncResult
Source§fn clone(&self) -> DestructiveSyncResult
fn clone(&self) -> DestructiveSyncResult
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 DestructiveSyncResult
impl RefUnwindSafe for DestructiveSyncResult
impl Send for DestructiveSyncResult
impl Sync for DestructiveSyncResult
impl Unpin for DestructiveSyncResult
impl UnsafeUnpin for DestructiveSyncResult
impl UnwindSafe for DestructiveSyncResult
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> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
Source§fn in_current_span(self) -> Instrumented<Self> ⓘ
fn in_current_span(self) -> Instrumented<Self> ⓘ
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