#[repr(C)]pub struct pargs {
pub ar_ref: u_int,
pub ar_length: u_int,
pub ar_args: [c_uchar; 1],
}Expand description
Used to hold a copy of the command line, if it had a sane length.
Fields§
§ar_ref: u_intReference count.
ar_length: u_intLength.
ar_args: [c_uchar; 1]Arguments.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for pargs
impl RefUnwindSafe for pargs
impl Send for pargs
impl Sync for pargs
impl Unpin for pargs
impl UnwindSafe for pargs
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