pub struct SettingEntry {
pub name: &'static str,
pub description: &'static str,
pub input_type: &'static str,
pub scope: &'static str,
pub aliases: &'static [&'static str],
}Expand description
One setting, and everything duckdb_settings() says about it that is not its value.
Fields§
§name: &'static strThe name, as SET spells it.
description: &'static strThe sentence the pin prints, word for word.
input_type: &'static strThe type a value for it is read as, which is the pin’s spelling and not a LogicalType.
scope: &'static strGLOBAL or LOCAL, and every setting rudb has is global.
aliases: &'static [&'static str]The other spellings of this setting, which the pin fills in on one of the pair and not both.
Trait Implementations§
Source§impl Clone for SettingEntry
impl Clone for SettingEntry
Source§fn clone(&self) -> SettingEntry
fn clone(&self) -> SettingEntry
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 moreimpl Copy for SettingEntry
Source§impl Debug for SettingEntry
impl Debug for SettingEntry
impl Eq for SettingEntry
Source§impl PartialEq for SettingEntry
impl PartialEq for SettingEntry
impl StructuralPartialEq for SettingEntry
Auto Trait Implementations§
impl Freeze for SettingEntry
impl RefUnwindSafe for SettingEntry
impl Send for SettingEntry
impl Sync for SettingEntry
impl Unpin for SettingEntry
impl UnsafeUnpin for SettingEntry
impl UnwindSafe for SettingEntry
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