#[repr(u32)]pub enum Intercepted {
kNo = 1,
kYes = 0,
}Expand description
Interceptor callbacks use this value to indicate whether the request was intercepted or not.
The values for constants and type are chosen this way for better performance. Interceptor callbacks use this value to indicate whether the request was intercepted or not.
The values for constants and type are chosen this way for better performance.
Variants§
Trait Implementations§
Source§impl Clone for v8_Intercepted
impl Clone for v8_Intercepted
Source§fn clone(&self) -> v8_Intercepted
fn clone(&self) -> v8_Intercepted
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 v8_Intercepted
impl Debug for v8_Intercepted
Source§impl Hash for v8_Intercepted
impl Hash for v8_Intercepted
Source§impl PartialEq for v8_Intercepted
impl PartialEq for v8_Intercepted
impl Copy for v8_Intercepted
impl Eq for v8_Intercepted
impl StructuralPartialEq for v8_Intercepted
Auto Trait Implementations§
impl Freeze for v8_Intercepted
impl RefUnwindSafe for v8_Intercepted
impl Send for v8_Intercepted
impl Sync for v8_Intercepted
impl Unpin for v8_Intercepted
impl UnsafeUnpin for v8_Intercepted
impl UnwindSafe for v8_Intercepted
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