pub struct SetViewport {
pub method: SetViewportMethod,
pub params: SetViewportParams,
}Fields§
§method: SetViewportMethod§params: SetViewportParamsImplementations§
Source§impl SetViewport
impl SetViewport
pub fn builder() -> SetViewportBuilder
Source§impl SetViewport
impl SetViewport
pub const IDENTIFIER: &'static str = "browsingContext.setViewport"
pub const DOMAIN_DIRECTION: &'static str = "remote"
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl Clone for SetViewport
impl Clone for SetViewport
Source§fn clone(&self) -> SetViewport
fn clone(&self) -> SetViewport
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 SetViewport
impl CommandResult for SetViewport
type Result = SetViewportResult
fn result_from_value(result: Value) -> Result<Self::Result>
Source§impl Debug for SetViewport
impl Debug for SetViewport
Source§impl<'de> Deserialize<'de> for SetViewport
impl<'de> Deserialize<'de> for SetViewport
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<SetViewport> for BrowsingContextCommand
impl From<SetViewport> for BrowsingContextCommand
Source§fn from(v: SetViewport) -> Self
fn from(v: SetViewport) -> Self
Converts to this type from the input type.
Source§impl From<SetViewport> for Command
impl From<SetViewport> for Command
Source§fn from(v: SetViewport) -> Self
fn from(v: SetViewport) -> Self
Converts to this type from the input type.
Source§impl PartialEq for SetViewport
impl PartialEq for SetViewport
Source§impl Serialize for SetViewport
impl Serialize for SetViewport
Source§impl TryFrom<BrowsingContextCommand> for SetViewport
impl TryFrom<BrowsingContextCommand> for SetViewport
Source§type Error = BrowsingContextCommand
type Error = BrowsingContextCommand
The type returned in the event of a conversion error.
Source§fn try_from(
e: BrowsingContextCommand,
) -> Result<Self, <SetViewport as TryFrom<BrowsingContextCommand>>::Error>
fn try_from( e: BrowsingContextCommand, ) -> Result<Self, <SetViewport as TryFrom<BrowsingContextCommand>>::Error>
Performs the conversion.
Source§impl TryFrom<Command> for SetViewport
impl TryFrom<Command> for SetViewport
impl StructuralPartialEq for SetViewport
Auto Trait Implementations§
impl Freeze for SetViewport
impl RefUnwindSafe for SetViewport
impl Send for SetViewport
impl Sync for SetViewport
impl Unpin for SetViewport
impl UnsafeUnpin for SetViewport
impl UnwindSafe for SetViewport
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