pub enum RawCommandDecision {
Forward,
Drop,
Stop(BackendStopReason),
}Expand description
Decision returned from ChromeRawDelegate::on_raw_command.
Variants§
Forward
Forward the raw command to Chromium transport.
Drop
Drop the raw command and continue processing.
Stop(BackendStopReason)
Stop backend processing with the given reason.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for RawCommandDecision
impl RefUnwindSafe for RawCommandDecision
impl Send for RawCommandDecision
impl Sync for RawCommandDecision
impl Unpin for RawCommandDecision
impl UnsafeUnpin for RawCommandDecision
impl UnwindSafe for RawCommandDecision
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