pub enum AuditsCommands {
GetEncodedResponse(GetEncodedResponse),
Disable(Disable),
Enable(Enable),
CheckContrast(CheckContrast),
CheckFormsIssues(CheckFormsIssues),
}Variants§
GetEncodedResponse(GetEncodedResponse)
Disable(Disable)
Enable(Enable)
CheckContrast(CheckContrast)
CheckFormsIssues(CheckFormsIssues)
Implementations§
Source§impl AuditsCommands
impl AuditsCommands
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl Clone for AuditsCommands
impl Clone for AuditsCommands
Source§fn clone(&self) -> AuditsCommands
fn clone(&self) -> AuditsCommands
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 AuditsCommands
impl Debug for AuditsCommands
Source§impl<'de> Deserialize<'de> for AuditsCommands
impl<'de> Deserialize<'de> for AuditsCommands
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 From<AuditsCommands> for BrowserProtocolCommands
impl From<AuditsCommands> for BrowserProtocolCommands
Source§fn from(v: AuditsCommands) -> Self
fn from(v: AuditsCommands) -> Self
Converts to this type from the input type.
Source§impl From<AuditsCommands> for Command
impl From<AuditsCommands> for Command
Source§fn from(v: AuditsCommands) -> Self
fn from(v: AuditsCommands) -> Self
Converts to this type from the input type.
Source§impl From<CheckContrast> for AuditsCommands
impl From<CheckContrast> for AuditsCommands
Source§fn from(v: CheckContrast) -> Self
fn from(v: CheckContrast) -> Self
Converts to this type from the input type.
Source§impl From<CheckFormsIssues> for AuditsCommands
impl From<CheckFormsIssues> for AuditsCommands
Source§fn from(v: CheckFormsIssues) -> Self
fn from(v: CheckFormsIssues) -> Self
Converts to this type from the input type.
Source§impl From<Disable> for AuditsCommands
impl From<Disable> for AuditsCommands
Source§impl From<Enable> for AuditsCommands
impl From<Enable> for AuditsCommands
Source§impl From<GetEncodedResponse> for AuditsCommands
impl From<GetEncodedResponse> for AuditsCommands
Source§fn from(v: GetEncodedResponse) -> Self
fn from(v: GetEncodedResponse) -> Self
Converts to this type from the input type.
Source§impl PartialEq for AuditsCommands
impl PartialEq for AuditsCommands
Source§impl Serialize for AuditsCommands
impl Serialize for AuditsCommands
Source§impl TryFrom<AuditsCommands> for CheckContrast
impl TryFrom<AuditsCommands> for CheckContrast
Source§type Error = AuditsCommands
type Error = AuditsCommands
The type returned in the event of a conversion error.
Source§fn try_from(
e: AuditsCommands,
) -> Result<Self, <CheckContrast as TryFrom<AuditsCommands>>::Error>
fn try_from( e: AuditsCommands, ) -> Result<Self, <CheckContrast as TryFrom<AuditsCommands>>::Error>
Performs the conversion.
Source§impl TryFrom<AuditsCommands> for CheckFormsIssues
impl TryFrom<AuditsCommands> for CheckFormsIssues
Source§type Error = AuditsCommands
type Error = AuditsCommands
The type returned in the event of a conversion error.
Source§fn try_from(
e: AuditsCommands,
) -> Result<Self, <CheckFormsIssues as TryFrom<AuditsCommands>>::Error>
fn try_from( e: AuditsCommands, ) -> Result<Self, <CheckFormsIssues as TryFrom<AuditsCommands>>::Error>
Performs the conversion.
Source§impl TryFrom<AuditsCommands> for Disable
impl TryFrom<AuditsCommands> for Disable
Source§type Error = AuditsCommands
type Error = AuditsCommands
The type returned in the event of a conversion error.
Source§fn try_from(
e: AuditsCommands,
) -> Result<Self, <Disable as TryFrom<AuditsCommands>>::Error>
fn try_from( e: AuditsCommands, ) -> Result<Self, <Disable as TryFrom<AuditsCommands>>::Error>
Performs the conversion.
Source§impl TryFrom<AuditsCommands> for Enable
impl TryFrom<AuditsCommands> for Enable
Source§type Error = AuditsCommands
type Error = AuditsCommands
The type returned in the event of a conversion error.
Source§fn try_from(
e: AuditsCommands,
) -> Result<Self, <Enable as TryFrom<AuditsCommands>>::Error>
fn try_from( e: AuditsCommands, ) -> Result<Self, <Enable as TryFrom<AuditsCommands>>::Error>
Performs the conversion.
Source§impl TryFrom<AuditsCommands> for GetEncodedResponse
impl TryFrom<AuditsCommands> for GetEncodedResponse
Source§type Error = AuditsCommands
type Error = AuditsCommands
The type returned in the event of a conversion error.
Source§fn try_from(
e: AuditsCommands,
) -> Result<Self, <GetEncodedResponse as TryFrom<AuditsCommands>>::Error>
fn try_from( e: AuditsCommands, ) -> Result<Self, <GetEncodedResponse as TryFrom<AuditsCommands>>::Error>
Performs the conversion.
Source§impl TryFrom<BrowserProtocolCommands> for AuditsCommands
impl TryFrom<BrowserProtocolCommands> for AuditsCommands
Source§type Error = BrowserProtocolCommands
type Error = BrowserProtocolCommands
The type returned in the event of a conversion error.
Source§fn try_from(
e: BrowserProtocolCommands,
) -> Result<Self, <AuditsCommands as TryFrom<BrowserProtocolCommands>>::Error>
fn try_from( e: BrowserProtocolCommands, ) -> Result<Self, <AuditsCommands as TryFrom<BrowserProtocolCommands>>::Error>
Performs the conversion.
Source§impl TryFrom<Command> for AuditsCommands
impl TryFrom<Command> for AuditsCommands
impl StructuralPartialEq for AuditsCommands
Auto Trait Implementations§
impl Freeze for AuditsCommands
impl RefUnwindSafe for AuditsCommands
impl Send for AuditsCommands
impl Sync for AuditsCommands
impl Unpin for AuditsCommands
impl UnsafeUnpin for AuditsCommands
impl UnwindSafe for AuditsCommands
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