pub enum InterceptDecision {
Capture(CaptureOpts),
Passthrough,
Reject(String),
}Variants§
Trait Implementations§
Source§impl Clone for InterceptDecision
impl Clone for InterceptDecision
Source§fn clone(&self) -> InterceptDecision
fn clone(&self) -> InterceptDecision
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 InterceptDecision
impl Debug for InterceptDecision
Auto Trait Implementations§
impl Freeze for InterceptDecision
impl RefUnwindSafe for InterceptDecision
impl Send for InterceptDecision
impl Sync for InterceptDecision
impl Unpin for InterceptDecision
impl UnsafeUnpin for InterceptDecision
impl UnwindSafe for InterceptDecision
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