pub struct TerminalSettingsContent {Show 15 fields
pub shell: Option<Shell>,
pub working_directory: Option<WorkingDirectory>,
pub font_size: Option<f32>,
pub font_family: Option<String>,
pub line_height: Option<TerminalLineHeight>,
pub font_features: Option<FontFeatures>,
pub env: Option<HashMap<String, String>>,
pub blinking: Option<TerminalBlink>,
pub alternate_scroll: Option<AlternateScroll>,
pub option_as_meta: Option<bool>,
pub copy_on_select: Option<bool>,
pub dock: Option<TerminalDockPosition>,
pub default_width: Option<f32>,
pub default_height: Option<f32>,
pub detect_venv: Option<VenvSettings>,
}
Fields§
§shell: Option<Shell>
§working_directory: Option<WorkingDirectory>
§font_size: Option<f32>
§font_family: Option<String>
§line_height: Option<TerminalLineHeight>
§font_features: Option<FontFeatures>
§env: Option<HashMap<String, String>>
§blinking: Option<TerminalBlink>
§alternate_scroll: Option<AlternateScroll>
§option_as_meta: Option<bool>
§copy_on_select: Option<bool>
§dock: Option<TerminalDockPosition>
§default_width: Option<f32>
§default_height: Option<f32>
§detect_venv: Option<VenvSettings>
Trait Implementations§
source§impl Clone for TerminalSettingsContent
impl Clone for TerminalSettingsContent
source§fn clone(&self) -> TerminalSettingsContent
fn clone(&self) -> TerminalSettingsContent
Returns a copy 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 Debug for TerminalSettingsContent
impl Debug for TerminalSettingsContent
source§impl Default for TerminalSettingsContent
impl Default for TerminalSettingsContent
source§fn default() -> TerminalSettingsContent
fn default() -> TerminalSettingsContent
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for TerminalSettingsContent
impl<'de> Deserialize<'de> for TerminalSettingsContent
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl JsonSchema for TerminalSettingsContent
impl JsonSchema for TerminalSettingsContent
source§fn schema_name() -> String
fn schema_name() -> String
The name of the generated JSON Schema. Read more
source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Returns a string that uniquely identifies the schema produced by this type. Read more
source§fn json_schema(gen: &mut SchemaGenerator) -> Schema
fn json_schema(gen: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
§fn is_referenceable() -> bool
fn is_referenceable() -> bool
Whether JSON Schemas generated for this type should be re-used where possible using the
$ref
keyword. Read moreAuto Trait Implementations§
impl RefUnwindSafe for TerminalSettingsContent
impl Send for TerminalSettingsContent
impl Sync for TerminalSettingsContent
impl Unpin for TerminalSettingsContent
impl UnwindSafe for TerminalSettingsContent
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