#[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_char
Trait 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 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 obs_cmdline_args
impl Debug for obs_cmdline_args
Source§impl Ord for obs_cmdline_args
impl Ord for obs_cmdline_args
Source§fn cmp(&self, other: &obs_cmdline_args) -> Ordering
fn cmp(&self, other: &obs_cmdline_args) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for obs_cmdline_args
impl PartialEq for obs_cmdline_args
Source§impl PartialOrd for obs_cmdline_args
impl PartialOrd for obs_cmdline_args
impl Copy for obs_cmdline_args
impl Eq for obs_cmdline_args
impl StructuralPartialEq 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