pub enum FlushOption<'a> {
Show 13 variants
BinaryLogs(Span),
EngineLogs(Span),
ErrorLogs(Span),
GeneralLogs(Span),
Logs(Span),
Privileges(Span),
OptimizerCosts(Span),
RelayLogs(Span),
RelayLogsForChannel {
span: Span,
channel: Identifier<'a>,
},
SlowLogs(Span),
Status(Span),
UserResources(Span),
Table {
span: Span,
tables: Vec<QualifiedName<'a>>,
with_read_lock: Option<Span>,
for_export: Option<Span>,
},
}Variants§
BinaryLogs(Span)
EngineLogs(Span)
ErrorLogs(Span)
GeneralLogs(Span)
Logs(Span)
Privileges(Span)
OptimizerCosts(Span)
RelayLogs(Span)
RelayLogsForChannel
SlowLogs(Span)
Status(Span)
UserResources(Span)
Table
Trait Implementations§
Source§impl<'a> Clone for FlushOption<'a>
impl<'a> Clone for FlushOption<'a>
Source§fn clone(&self) -> FlushOption<'a>
fn clone(&self) -> FlushOption<'a>
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<'a> Debug for FlushOption<'a>
impl<'a> Debug for FlushOption<'a>
Auto Trait Implementations§
impl<'a> Freeze for FlushOption<'a>
impl<'a> RefUnwindSafe for FlushOption<'a>
impl<'a> Send for FlushOption<'a>
impl<'a> Sync for FlushOption<'a>
impl<'a> Unpin for FlushOption<'a>
impl<'a> UnsafeUnpin for FlushOption<'a>
impl<'a> UnwindSafe for FlushOption<'a>
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