#[repr(C)]pub struct obs_cmdline_args {
pub argc: c_int,
pub argv: *mut *mut c_char,
}Expand description
Access to the argc/argv used to start OBS. What you see is what you get.
Fields§
§argc: c_int§argv: *mut *mut c_charTrait Implementations§
Source§impl Clone for obs_cmdline_args
impl Clone for obs_cmdline_args
Source§fn clone(&self) -> obs_cmdline_args
fn clone(&self) -> obs_cmdline_args
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 obs_cmdline_args
impl Debug for obs_cmdline_args
impl Copy for obs_cmdline_args
Auto Trait Implementations§
impl Freeze for obs_cmdline_args
impl RefUnwindSafe for obs_cmdline_args
impl !Send for obs_cmdline_args
impl !Sync for obs_cmdline_args
impl Unpin for obs_cmdline_args
impl UnwindSafe for obs_cmdline_args
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