pub enum ChromeActionClass {
Inspect,
Interact,
Protected,
Prohibited,
}Expand description
How a browser command is treated by Roder policy.
Variants§
Inspect
Read-only inspection; allowed in assist/control when the site permits.
Interact
Ordinary interaction (click/type/scroll); allowed in control.
Protected
High-risk; requires explicit approval and control mode.
Prohibited
Refused outright.
Trait Implementations§
Source§impl Clone for ChromeActionClass
impl Clone for ChromeActionClass
Source§fn clone(&self) -> ChromeActionClass
fn clone(&self) -> ChromeActionClass
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 moreimpl Copy for ChromeActionClass
Source§impl Debug for ChromeActionClass
impl Debug for ChromeActionClass
impl Eq for ChromeActionClass
Source§impl PartialEq for ChromeActionClass
impl PartialEq for ChromeActionClass
Source§fn eq(&self, other: &ChromeActionClass) -> bool
fn eq(&self, other: &ChromeActionClass) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ChromeActionClass
Auto Trait Implementations§
impl Freeze for ChromeActionClass
impl RefUnwindSafe for ChromeActionClass
impl Send for ChromeActionClass
impl Sync for ChromeActionClass
impl Unpin for ChromeActionClass
impl UnsafeUnpin for ChromeActionClass
impl UnwindSafe for ChromeActionClass
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.