pub struct ExecveRawArgs {
pub filename: *const c_char,
pub argv: *const *const c_char,
pub envp: *const *const c_char,
}Fields§
§filename: *const c_char§argv: *const *const c_char§envp: *const *const c_charTrait Implementations§
Source§impl Clone for ExecveRawArgs
impl Clone for ExecveRawArgs
Source§fn clone(&self) -> ExecveRawArgs
fn clone(&self) -> ExecveRawArgs
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 ExecveRawArgs
impl Debug for ExecveRawArgs
Source§impl PartialEq for ExecveRawArgs
impl PartialEq for ExecveRawArgs
Source§impl SyscallGroupsGetter for ExecveRawArgs
impl SyscallGroupsGetter for ExecveRawArgs
fn syscall_groups(&self) -> BitFlags<SyscallGroups>
Source§impl SyscallNumber for ExecveRawArgs
impl SyscallNumber for ExecveRawArgs
fn syscall_number(&self) -> isize
Source§impl SyscallStopInspect for ExecveRawArgs
impl SyscallStopInspect for ExecveRawArgs
type Args = ExecveArgs
type Result = ExecveModifiedArgs
fn inspect_sysenter(self, inspectee_pid: Pid) -> Self::Args
fn inspect_sysexit( self, inspectee_pid: Pid, regs: &user_regs_struct, ) -> Self::Result
impl Copy for ExecveRawArgs
impl StructuralPartialEq for ExecveRawArgs
Auto Trait Implementations§
impl Freeze for ExecveRawArgs
impl RefUnwindSafe for ExecveRawArgs
impl !Send for ExecveRawArgs
impl !Sync for ExecveRawArgs
impl Unpin for ExecveRawArgs
impl UnwindSafe for ExecveRawArgs
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