Struct datafusion_common::config::ConfigEntry
source · pub struct ConfigEntry {
pub key: String,
pub value: Option<String>,
pub description: &'static str,
}
Expand description
A key value pair, with a corresponding description
Fields§
§key: String
A unique string to identify this config value
value: Option<String>
The value if any
description: &'static str
A description of this configuration entry
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ConfigEntry
impl RefUnwindSafe for ConfigEntry
impl Send for ConfigEntry
impl Sync for ConfigEntry
impl Unpin for ConfigEntry
impl UnwindSafe for ConfigEntry
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