pub struct EditorTroubleshooting {
pub prof_startup: bool,
pub disable_extensions: bool,
pub disable_extension: Vec<String>,
pub sync: Option<SyncState>,
pub inspect_extensions: Option<u16>,
pub inspect_brk_extensions: Option<u16>,
pub disable_gpu: bool,
pub telemetry: bool,
}Fields§
§prof_startup: boolRun CPU profiler during startup.
disable_extensions: boolDisable all installed extensions.
disable_extension: Vec<String>Disable an extension.
sync: Option<SyncState>Turn sync on or off.
inspect_extensions: Option<u16>Allow debugging and profiling of extensions. Check the developer tools for the connection URI.
inspect_brk_extensions: Option<u16>Allow debugging and profiling of extensions with the extension host being paused after start. Check the developer tools for the connection URI.
disable_gpu: boolDisable GPU hardware acceleration.
telemetry: boolShows all telemetry events which the editor collects.
Implementations§
Source§impl EditorTroubleshooting
impl EditorTroubleshooting
pub fn add_code_args(&self, target: &mut Vec<String>)
Trait Implementations§
Source§impl Args for EditorTroubleshooting
impl Args for EditorTroubleshooting
Source§fn augment_args<'b>(__clap_app: Command) -> Command
fn augment_args<'b>(__clap_app: Command) -> Command
Source§fn augment_args_for_update<'b>(__clap_app: Command) -> Command
fn augment_args_for_update<'b>(__clap_app: Command) -> Command
Append to
Command so it can instantiate self via
FromArgMatches::update_from_arg_matches_mut Read moreSource§impl Clone for EditorTroubleshooting
impl Clone for EditorTroubleshooting
Source§fn clone(&self) -> EditorTroubleshooting
fn clone(&self) -> EditorTroubleshooting
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 Debug for EditorTroubleshooting
impl Debug for EditorTroubleshooting
Source§impl Default for EditorTroubleshooting
impl Default for EditorTroubleshooting
Source§fn default() -> EditorTroubleshooting
fn default() -> EditorTroubleshooting
Returns the “default value” for a type. Read more
Source§impl FromArgMatches for EditorTroubleshooting
impl FromArgMatches for EditorTroubleshooting
Source§fn from_arg_matches(__clap_arg_matches: &ArgMatches) -> Result<Self, Error>
fn from_arg_matches(__clap_arg_matches: &ArgMatches) -> Result<Self, Error>
Source§fn from_arg_matches_mut(
__clap_arg_matches: &mut ArgMatches,
) -> Result<Self, Error>
fn from_arg_matches_mut( __clap_arg_matches: &mut ArgMatches, ) -> Result<Self, Error>
Source§fn update_from_arg_matches(
&mut self,
__clap_arg_matches: &ArgMatches,
) -> Result<(), Error>
fn update_from_arg_matches( &mut self, __clap_arg_matches: &ArgMatches, ) -> Result<(), Error>
Assign values from
ArgMatches to self.Source§fn update_from_arg_matches_mut(
&mut self,
__clap_arg_matches: &mut ArgMatches,
) -> Result<(), Error>
fn update_from_arg_matches_mut( &mut self, __clap_arg_matches: &mut ArgMatches, ) -> Result<(), Error>
Assign values from
ArgMatches to self.Auto Trait Implementations§
impl Freeze for EditorTroubleshooting
impl RefUnwindSafe for EditorTroubleshooting
impl Send for EditorTroubleshooting
impl Sync for EditorTroubleshooting
impl Unpin for EditorTroubleshooting
impl UnwindSafe for EditorTroubleshooting
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