pub struct SetScreenOrientationOverride {
pub method: SetScreenOrientationOverrideMethod,
pub params: SetScreenOrientationOverrideParams,
}Fields§
§method: SetScreenOrientationOverrideMethod§params: SetScreenOrientationOverrideParamsImplementations§
Source§impl SetScreenOrientationOverride
impl SetScreenOrientationOverride
pub fn builder() -> SetScreenOrientationOverrideBuilder
Source§impl SetScreenOrientationOverride
impl SetScreenOrientationOverride
pub const IDENTIFIER: &'static str = "emulation.setScreenOrientationOverride"
pub const DOMAIN_DIRECTION: &'static str = "remote"
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl Clone for SetScreenOrientationOverride
impl Clone for SetScreenOrientationOverride
Source§fn clone(&self) -> SetScreenOrientationOverride
fn clone(&self) -> SetScreenOrientationOverride
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 CommandResult for SetScreenOrientationOverride
impl CommandResult for SetScreenOrientationOverride
type Result = SetScreenOrientationOverrideResult
fn result_from_value(result: Value) -> Result<Self::Result>
Source§impl Debug for SetScreenOrientationOverride
impl Debug for SetScreenOrientationOverride
Source§impl<'de> Deserialize<'de> for SetScreenOrientationOverride
impl<'de> Deserialize<'de> for SetScreenOrientationOverride
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<SetScreenOrientationOverride> for Command
impl From<SetScreenOrientationOverride> for Command
Source§fn from(v: SetScreenOrientationOverride) -> Self
fn from(v: SetScreenOrientationOverride) -> Self
Converts to this type from the input type.
Source§impl From<SetScreenOrientationOverride> for EmulationCommand
impl From<SetScreenOrientationOverride> for EmulationCommand
Source§fn from(v: SetScreenOrientationOverride) -> Self
fn from(v: SetScreenOrientationOverride) -> Self
Converts to this type from the input type.
Source§impl PartialEq for SetScreenOrientationOverride
impl PartialEq for SetScreenOrientationOverride
Source§fn eq(&self, other: &SetScreenOrientationOverride) -> bool
fn eq(&self, other: &SetScreenOrientationOverride) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl TryFrom<EmulationCommand> for SetScreenOrientationOverride
impl TryFrom<EmulationCommand> for SetScreenOrientationOverride
Source§type Error = EmulationCommand
type Error = EmulationCommand
The type returned in the event of a conversion error.
Source§fn try_from(
e: EmulationCommand,
) -> Result<Self, <SetScreenOrientationOverride as TryFrom<EmulationCommand>>::Error>
fn try_from( e: EmulationCommand, ) -> Result<Self, <SetScreenOrientationOverride as TryFrom<EmulationCommand>>::Error>
Performs the conversion.
impl StructuralPartialEq for SetScreenOrientationOverride
Auto Trait Implementations§
impl Freeze for SetScreenOrientationOverride
impl RefUnwindSafe for SetScreenOrientationOverride
impl Send for SetScreenOrientationOverride
impl Sync for SetScreenOrientationOverride
impl Unpin for SetScreenOrientationOverride
impl UnsafeUnpin for SetScreenOrientationOverride
impl UnwindSafe for SetScreenOrientationOverride
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<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more