1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
use super::*;
/// The History class.
/// [`History`](https://developer.mozilla.org/en-US/docs/Web/API/History)
#[derive(Clone, Debug, PartialEq, PartialOrd)]
#[repr(transparent)]
pub struct History {
inner: Any,
}
impl FromVal for History {
fn from_val(v: &Any) -> Self {
History {
inner: Any::from_val(v),
}
}
fn take_ownership(v: AnyHandle) -> Self {
Self::from_val(&Any::take_ownership(v))
}
fn as_handle(&self) -> AnyHandle {
self.inner.as_handle()
}
}
impl core::ops::Deref for History {
type Target = Any;
fn deref(&self) -> &Self::Target {
&self.inner
}
}
impl core::ops::DerefMut for History {
fn deref_mut(&mut self) -> &mut Self::Target {
&mut self.inner
}
}
impl AsRef<Any> for History {
fn as_ref(&self) -> &Any {
&self.inner
}
}
impl AsMut<Any> for History {
fn as_mut(&mut self) -> &mut Any {
&mut self.inner
}
}
impl From<History> for Any {
fn from(s: History) -> Any {
let handle = s.inner.as_handle();
core::mem::forget(s);
Any::take_ownership(handle)
}
}
impl From<&History> for Any {
fn from(s: &History) -> Any {
s.inner.clone().into()
}
}
jsbind::utils::impl_dyn_cast!(History);
impl History {
/// Getter of the `length` attribute.
/// [`History.length`](https://developer.mozilla.org/en-US/docs/Web/API/History/length)
pub fn length(&self) -> u32 {
self.inner.get("length").as_::<u32>()
}
}
impl History {
/// Getter of the `scrollRestoration` attribute.
/// [`History.scrollRestoration`](https://developer.mozilla.org/en-US/docs/Web/API/History/scrollRestoration)
pub fn scroll_restoration(&self) -> ScrollRestoration {
self.inner
.get("scrollRestoration")
.as_::<ScrollRestoration>()
}
/// Setter of the `scrollRestoration` attribute.
/// [`History.scrollRestoration`](https://developer.mozilla.org/en-US/docs/Web/API/History/scrollRestoration)
pub fn set_scroll_restoration(&mut self, value: &ScrollRestoration) {
self.inner.set("scrollRestoration", value);
}
}
impl History {
/// Getter of the `state` attribute.
/// [`History.state`](https://developer.mozilla.org/en-US/docs/Web/API/History/state)
pub fn state(&self) -> Any {
self.inner.get("state").as_::<Any>()
}
}
impl History {
/// The go method.
/// [`History.go`](https://developer.mozilla.org/en-US/docs/Web/API/History/go)
pub fn go(&self) -> Undefined {
self.inner.call("go", &[]).as_::<Undefined>()
}
}
impl History {
/// The go method.
/// [`History.go`](https://developer.mozilla.org/en-US/docs/Web/API/History/go)
pub fn go_with_delta(&self, delta: i32) -> Undefined {
self.inner.call("go", &[delta.into()]).as_::<Undefined>()
}
}
impl History {
/// The back method.
/// [`History.back`](https://developer.mozilla.org/en-US/docs/Web/API/History/back)
pub fn back(&self) -> Undefined {
self.inner.call("back", &[]).as_::<Undefined>()
}
}
impl History {
/// The forward method.
/// [`History.forward`](https://developer.mozilla.org/en-US/docs/Web/API/History/forward)
pub fn forward(&self) -> Undefined {
self.inner.call("forward", &[]).as_::<Undefined>()
}
}
impl History {
/// The pushState method.
/// [`History.pushState`](https://developer.mozilla.org/en-US/docs/Web/API/History/pushState)
pub fn push_state(&self, data: &Any, unused: &JsString) -> Undefined {
self.inner
.call("pushState", &[data.into(), unused.into()])
.as_::<Undefined>()
}
}
impl History {
/// The pushState method.
/// [`History.pushState`](https://developer.mozilla.org/en-US/docs/Web/API/History/pushState)
pub fn push_state_with_url(&self, data: &Any, unused: &JsString, url: &JsString) -> Undefined {
self.inner
.call("pushState", &[data.into(), unused.into(), url.into()])
.as_::<Undefined>()
}
}
impl History {
/// The replaceState method.
/// [`History.replaceState`](https://developer.mozilla.org/en-US/docs/Web/API/History/replaceState)
pub fn replace_state(&self, data: &Any, unused: &JsString) -> Undefined {
self.inner
.call("replaceState", &[data.into(), unused.into()])
.as_::<Undefined>()
}
}
impl History {
/// The replaceState method.
/// [`History.replaceState`](https://developer.mozilla.org/en-US/docs/Web/API/History/replaceState)
pub fn replace_state_with_url(
&self,
data: &Any,
unused: &JsString,
url: &JsString,
) -> Undefined {
self.inner
.call("replaceState", &[data.into(), unused.into(), url.into()])
.as_::<Undefined>()
}
}