#[repr(C)]pub struct WINDIVERT_DATA_REFLECT {
pub timestamp: i64,
pub process_id: u32,
pub layer: WinDivertLayer,
pub flags: WinDivertFlags,
pub priority: i16,
}Expand description
Represents the associated data recieved using WinDivertLayer::Reflect
Fields§
§timestamp: i64Timestamp indicating when the handle was opened.
process_id: u32Process if of the process that opened the handle.
layer: WinDivertLayerWinDivertLayer parameter on WinDivertOpen for the specified handle.
flags: WinDivertFlagsWinDivertFlags parameter on WinDivertOpen for the specified handle.
priority: i16Priority parameter on WinDivertOpen for the specified handle.
Trait Implementations§
Source§impl Clone for WINDIVERT_DATA_REFLECT
impl Clone for WINDIVERT_DATA_REFLECT
Source§fn clone(&self) -> WINDIVERT_DATA_REFLECT
fn clone(&self) -> WINDIVERT_DATA_REFLECT
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 WINDIVERT_DATA_REFLECT
impl Debug for WINDIVERT_DATA_REFLECT
Source§impl Default for WINDIVERT_DATA_REFLECT
impl Default for WINDIVERT_DATA_REFLECT
impl Copy for WINDIVERT_DATA_REFLECT
Auto Trait Implementations§
impl Freeze for WINDIVERT_DATA_REFLECT
impl RefUnwindSafe for WINDIVERT_DATA_REFLECT
impl Send for WINDIVERT_DATA_REFLECT
impl Sync for WINDIVERT_DATA_REFLECT
impl Unpin for WINDIVERT_DATA_REFLECT
impl UnwindSafe for WINDIVERT_DATA_REFLECT
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