pub struct TtyCheckInfo {
pub name: String,
pub operation: String,
pub handler: u64,
pub hooked: bool,
}Expand description
Information about a TTY operations function pointer check.
Fields§
§name: StringTTY device name.
operation: StringOperation name (e.g. “write”, “ioctl”).
handler: u64Handler function address.
hooked: boolWhether this handler appears hooked (outside kernel text).
Trait Implementations§
Source§impl Clone for TtyCheckInfo
impl Clone for TtyCheckInfo
Source§fn clone(&self) -> TtyCheckInfo
fn clone(&self) -> TtyCheckInfo
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 moreAuto Trait Implementations§
impl Freeze for TtyCheckInfo
impl RefUnwindSafe for TtyCheckInfo
impl Send for TtyCheckInfo
impl Sync for TtyCheckInfo
impl Unpin for TtyCheckInfo
impl UnsafeUnpin for TtyCheckInfo
impl UnwindSafe for TtyCheckInfo
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