pub struct SelectModifiedArgs {
pub syscall_result: c_int,
pub readfds: InspectResult<Option<fd_set>>,
pub writefds: InspectResult<Option<fd_set>>,
pub exceptfds: InspectResult<Option<fd_set>>,
}Fields§
§syscall_result: c_int§readfds: InspectResult<Option<fd_set>>§writefds: InspectResult<Option<fd_set>>§exceptfds: InspectResult<Option<fd_set>>Trait Implementations§
Source§impl Clone for SelectModifiedArgs
impl Clone for SelectModifiedArgs
Source§fn clone(&self) -> SelectModifiedArgs
fn clone(&self) -> SelectModifiedArgs
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 SelectModifiedArgs
impl Debug for SelectModifiedArgs
Source§impl From<SelectModifiedArgs> for SyscallModifiedArgs
Available on x86-64 only.
impl From<SelectModifiedArgs> for SyscallModifiedArgs
Available on x86-64 only.
Source§fn from(args: SelectModifiedArgs) -> Self
fn from(args: SelectModifiedArgs) -> Self
Converts to this type from the input type.
Source§impl PartialEq for SelectModifiedArgs
impl PartialEq for SelectModifiedArgs
Source§fn eq(&self, other: &SelectModifiedArgs) -> bool
fn eq(&self, other: &SelectModifiedArgs) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl SyscallGroupsGetter for SelectModifiedArgs
Available on x86-64 only.
impl SyscallGroupsGetter for SelectModifiedArgs
Available on x86-64 only.
fn syscall_groups(&self) -> BitFlags<SyscallGroups>
Source§impl SyscallNumber for SelectModifiedArgs
Available on x86-64 only.
impl SyscallNumber for SelectModifiedArgs
Available on x86-64 only.
fn syscall_number(&self) -> isize
impl StructuralPartialEq for SelectModifiedArgs
Auto Trait Implementations§
impl Freeze for SelectModifiedArgs
impl RefUnwindSafe for SelectModifiedArgs
impl Send for SelectModifiedArgs
impl Sync for SelectModifiedArgs
impl Unpin for SelectModifiedArgs
impl UnsafeUnpin for SelectModifiedArgs
impl UnwindSafe for SelectModifiedArgs
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