pub struct TraverseHistory {
pub method: TraverseHistoryMethod,
pub params: TraverseHistoryParams,
}Fields§
§method: TraverseHistoryMethod§params: TraverseHistoryParamsImplementations§
Source§impl TraverseHistory
impl TraverseHistory
pub fn builder() -> TraverseHistoryBuilder
Source§impl TraverseHistory
impl TraverseHistory
pub const IDENTIFIER: &'static str = "browsingContext.traverseHistory"
pub const DOMAIN_DIRECTION: &'static str = "remote"
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl Clone for TraverseHistory
impl Clone for TraverseHistory
Source§fn clone(&self) -> TraverseHistory
fn clone(&self) -> TraverseHistory
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 TraverseHistory
impl CommandResult for TraverseHistory
type Result = TraverseHistoryResult
fn result_from_value(result: Value) -> Result<Self::Result>
Source§impl Debug for TraverseHistory
impl Debug for TraverseHistory
Source§impl<'de> Deserialize<'de> for TraverseHistory
impl<'de> Deserialize<'de> for TraverseHistory
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<TraverseHistory> for BrowsingContextCommand
impl From<TraverseHistory> for BrowsingContextCommand
Source§fn from(v: TraverseHistory) -> Self
fn from(v: TraverseHistory) -> Self
Converts to this type from the input type.
Source§impl From<TraverseHistory> for Command
impl From<TraverseHistory> for Command
Source§fn from(v: TraverseHistory) -> Self
fn from(v: TraverseHistory) -> Self
Converts to this type from the input type.
Source§impl PartialEq for TraverseHistory
impl PartialEq for TraverseHistory
Source§impl Serialize for TraverseHistory
impl Serialize for TraverseHistory
Source§impl TryFrom<BrowsingContextCommand> for TraverseHistory
impl TryFrom<BrowsingContextCommand> for TraverseHistory
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, <TraverseHistory as TryFrom<BrowsingContextCommand>>::Error>
fn try_from( e: BrowsingContextCommand, ) -> Result<Self, <TraverseHistory as TryFrom<BrowsingContextCommand>>::Error>
Performs the conversion.
Source§impl TryFrom<Command> for TraverseHistory
impl TryFrom<Command> for TraverseHistory
impl StructuralPartialEq for TraverseHistory
Auto Trait Implementations§
impl Freeze for TraverseHistory
impl RefUnwindSafe for TraverseHistory
impl Send for TraverseHistory
impl Sync for TraverseHistory
impl Unpin for TraverseHistory
impl UnsafeUnpin for TraverseHistory
impl UnwindSafe for TraverseHistory
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