pub enum BrowserPredicateCommand {
Visible {
target: BrowserTarget,
},
Enabled {
target: BrowserTarget,
},
Checked {
target: BrowserTarget,
},
}Variants§
Visible
Fields
§
target: BrowserTargetEnabled
Fields
§
target: BrowserTargetChecked
Fields
§
target: BrowserTargetTrait Implementations§
Source§impl Clone for BrowserPredicateCommand
impl Clone for BrowserPredicateCommand
Source§fn clone(&self) -> BrowserPredicateCommand
fn clone(&self) -> BrowserPredicateCommand
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 BrowserPredicateCommand
impl Debug for BrowserPredicateCommand
Source§impl<'de> Deserialize<'de> for BrowserPredicateCommand
impl<'de> Deserialize<'de> for BrowserPredicateCommand
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for BrowserPredicateCommand
impl PartialEq for BrowserPredicateCommand
Source§impl Serialize for BrowserPredicateCommand
impl Serialize for BrowserPredicateCommand
impl Eq for BrowserPredicateCommand
impl StructuralPartialEq for BrowserPredicateCommand
Auto Trait Implementations§
impl Freeze for BrowserPredicateCommand
impl RefUnwindSafe for BrowserPredicateCommand
impl Send for BrowserPredicateCommand
impl Sync for BrowserPredicateCommand
impl Unpin for BrowserPredicateCommand
impl UnsafeUnpin for BrowserPredicateCommand
impl UnwindSafe for BrowserPredicateCommand
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.