pub struct CommandLine(/* private fields */);Expand description
See _cef_command_line_t for more documentation.
Trait Implementations§
Source§impl Clone for CommandLine
impl Clone for CommandLine
Source§fn clone(&self) -> CommandLine
fn clone(&self) -> CommandLine
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 ConvertParam<*mut _cef_command_line_t> for &CommandLine
impl ConvertParam<*mut _cef_command_line_t> for &CommandLine
fn into_raw(self) -> *mut _cef_command_line_t
Source§impl ConvertParam<*mut _cef_command_line_t> for &mut CommandLine
impl ConvertParam<*mut _cef_command_line_t> for &mut CommandLine
fn into_raw(self) -> *mut _cef_command_line_t
Source§impl ConvertReturnValue<CommandLine> for *mut _cef_command_line_t
impl ConvertReturnValue<CommandLine> for *mut _cef_command_line_t
fn wrap_result(self) -> CommandLine
Source§impl From<CommandLine> for *mut _cef_command_line_t
impl From<CommandLine> for *mut _cef_command_line_t
Source§fn from(value: CommandLine) -> Self
fn from(value: CommandLine) -> Self
Converts to this type from the input type.
Source§impl ImplCommandLine for CommandLine
impl ImplCommandLine for CommandLine
Source§fn is_valid(&self) -> c_int
fn is_valid(&self) -> c_int
See
_cef_command_line_t::is_valid for more documentation.Source§fn is_read_only(&self) -> c_int
fn is_read_only(&self) -> c_int
See
_cef_command_line_t::is_read_only for more documentation.Source§fn copy(&self) -> Option<CommandLine>
fn copy(&self) -> Option<CommandLine>
See
_cef_command_line_t::copy for more documentation.Source§fn init_from_argv(&self, argc: c_int, argv: *const *const c_char)
fn init_from_argv(&self, argc: c_int, argv: *const *const c_char)
See
_cef_command_line_t::init_from_argv for more documentation.Source§fn init_from_string(&self, command_line: Option<&CefString>)
fn init_from_string(&self, command_line: Option<&CefString>)
See
_cef_command_line_t::init_from_string for more documentation.Source§fn reset(&self)
fn reset(&self)
See
_cef_command_line_t::reset for more documentation.Source§fn argv(&self, argv: Option<&mut CefStringList>)
fn argv(&self, argv: Option<&mut CefStringList>)
See
_cef_command_line_t::get_argv for more documentation.Source§fn command_line_string(&self) -> CefStringUserfree
fn command_line_string(&self) -> CefStringUserfree
See
_cef_command_line_t::get_command_line_string for more documentation.Source§fn program(&self) -> CefStringUserfree
fn program(&self) -> CefStringUserfree
See
_cef_command_line_t::get_program for more documentation.Source§fn set_program(&self, program: Option<&CefString>)
fn set_program(&self, program: Option<&CefString>)
See
_cef_command_line_t::set_program for more documentation.Source§fn has_switches(&self) -> c_int
fn has_switches(&self) -> c_int
See
_cef_command_line_t::has_switches for more documentation.Source§fn has_switch(&self, name: Option<&CefString>) -> c_int
fn has_switch(&self, name: Option<&CefString>) -> c_int
See
_cef_command_line_t::has_switch for more documentation.Source§fn switch_value(&self, name: Option<&CefString>) -> CefStringUserfree
fn switch_value(&self, name: Option<&CefString>) -> CefStringUserfree
See
_cef_command_line_t::get_switch_value for more documentation.Source§fn switches(&self, switches: Option<&mut CefStringMap>)
fn switches(&self, switches: Option<&mut CefStringMap>)
See
_cef_command_line_t::get_switches for more documentation.Source§fn append_switch(&self, name: Option<&CefString>)
fn append_switch(&self, name: Option<&CefString>)
See
_cef_command_line_t::append_switch for more documentation.Source§fn append_switch_with_value(
&self,
name: Option<&CefString>,
value: Option<&CefString>,
)
fn append_switch_with_value( &self, name: Option<&CefString>, value: Option<&CefString>, )
See
_cef_command_line_t::append_switch_with_value for more documentation.Source§fn has_arguments(&self) -> c_int
fn has_arguments(&self) -> c_int
See
_cef_command_line_t::has_arguments for more documentation.Source§fn arguments(&self, arguments: Option<&mut CefStringList>)
fn arguments(&self, arguments: Option<&mut CefStringList>)
See
_cef_command_line_t::get_arguments for more documentation.Source§fn append_argument(&self, argument: Option<&CefString>)
fn append_argument(&self, argument: Option<&CefString>)
See
_cef_command_line_t::append_argument for more documentation.Source§fn prepend_wrapper(&self, wrapper: Option<&CefString>)
fn prepend_wrapper(&self, wrapper: Option<&CefString>)
See
_cef_command_line_t::prepend_wrapper for more documentation.Source§fn remove_switch(&self, name: Option<&CefString>)
fn remove_switch(&self, name: Option<&CefString>)
See
_cef_command_line_t::remove_switch for more documentation.fn get_raw(&self) -> *mut _cef_command_line_t
Source§impl Rc for CommandLine
impl Rc for CommandLine
Source§fn as_base(&self) -> &_cef_base_ref_counted_t
fn as_base(&self) -> &_cef_base_ref_counted_t
Get the reference of cef_base_ref_counted_t.
Source§unsafe fn release(&self) -> bool
unsafe fn release(&self) -> bool
Decrease reference count by 1 and release the value if the count meets 0.
Reuturn
True if it is released. Read moreSource§fn has_one_ref(&self) -> bool
fn has_one_ref(&self) -> bool
True if the reference count is exactly 1.Source§fn has_at_least_one_ref(&self) -> bool
fn has_at_least_one_ref(&self) -> bool
True if the reference count is larger than 0.Auto Trait Implementations§
impl Freeze for CommandLine
impl RefUnwindSafe for CommandLine
impl Send for CommandLine
impl Sync for CommandLine
impl Unpin for CommandLine
impl UnwindSafe for CommandLine
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