pub struct NonInteractiveConfig {
pub data_file: String,
pub query: String,
pub output_format: OutputFormat,
pub output_file: Option<String>,
pub case_insensitive: bool,
pub auto_hide_empty: bool,
pub limit: Option<usize>,
pub query_plan: bool,
pub execution_plan: bool,
pub script_file: Option<String>,
}
Expand description
Configuration for non-interactive query execution
Fields§
§data_file: String
§query: String
§output_format: OutputFormat
§output_file: Option<String>
§case_insensitive: bool
§auto_hide_empty: bool
§limit: Option<usize>
§query_plan: bool
§execution_plan: bool
§script_file: Option<String>
Auto Trait Implementations§
impl Freeze for NonInteractiveConfig
impl RefUnwindSafe for NonInteractiveConfig
impl Send for NonInteractiveConfig
impl Sync for NonInteractiveConfig
impl Unpin for NonInteractiveConfig
impl UnwindSafe for NonInteractiveConfig
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> 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