pub struct Js;
js
only.Expand description
Implementations§
Source§impl Js
§Web API console
impl Js
§Web API console
Sourcepub fn console_debug(text: &str)
Available on crate feature unsafe_ffi
and WebAssembly only.
pub fn console_debug(text: &str)
unsafe_ffi
and WebAssembly only.(debug) Outputs a message to the console with the debug log level.
Sourcepub fn console_error(text: &str)
Available on crate feature unsafe_ffi
and WebAssembly only.
pub fn console_error(text: &str)
unsafe_ffi
and WebAssembly only.(error) Outputs a message to the console with the error log level.
Sourcepub fn console_info(text: &str)
Available on crate feature unsafe_ffi
and WebAssembly only.
pub fn console_info(text: &str)
unsafe_ffi
and WebAssembly only.(info) Outputs a message to the console with the info log level.
Sourcepub fn console_log(text: &str)
Available on crate feature unsafe_ffi
and WebAssembly only.
pub fn console_log(text: &str)
unsafe_ffi
and WebAssembly only.(log) Outputs a message to the console.
Sourcepub fn console_trace()
Available on crate feature unsafe_ffi
and WebAssembly only.
pub fn console_trace()
unsafe_ffi
and WebAssembly only.(trace) Outputs a stack trace.
Sourcepub fn console_warn(text: &str)
Available on crate feature unsafe_ffi
and WebAssembly only.
pub fn console_warn(text: &str)
unsafe_ffi
and WebAssembly only.(warn) Outputs a message to the console with the warning log level.
Sourcepub fn console_group(text: &str)
Available on crate feature unsafe_ffi
and WebAssembly only.
pub fn console_group(text: &str)
unsafe_ffi
and WebAssembly only.(group) Creates a new inline group, indenting all following output by another level.
Sourcepub fn console_group_end()
Available on crate feature unsafe_ffi
and WebAssembly only.
pub fn console_group_end()
unsafe_ffi
and WebAssembly only.(groupEnd) Exits the current inline group.
Source§impl Js
§Web API Events
Provides event handling for interactivity.
Uses Rust function pointers to manage callbacks.
impl Js
§Web API Events
Provides event handling for interactivity. Uses Rust function pointers to manage callbacks.
Sourcepub fn event_add_listener(
element: &str,
event: JsEvent,
rust_fn: extern "C" fn(),
)
Available on crate feature unsafe_ffi
and WebAssembly only.
pub fn event_add_listener( element: &str, event: JsEvent, rust_fn: extern "C" fn(), )
unsafe_ffi
and WebAssembly only.(addEventListener)
Attaches a Rust function event
listener from an element
.
Sourcepub fn event_remove_listener(
element: &str,
event: JsEvent,
rust_fn: extern "C" fn(),
)
Available on crate feature unsafe_ffi
and WebAssembly only.
pub fn event_remove_listener( element: &str, event: JsEvent, rust_fn: extern "C" fn(), )
unsafe_ffi
and WebAssembly only.(removeEventListener)
Removes a a Rust function event
listener from an element
.
Sourcepub fn event_add_listener_js(element: &str, event: JsEvent, js_fn_name: &str)
Available on crate feature unsafe_ffi
and WebAssembly only.
pub fn event_add_listener_js(element: &str, event: JsEvent, js_fn_name: &str)
unsafe_ffi
and WebAssembly only.(addEventListenerJs)
Attaches a JavaScript function event
linstener to an element
.
Sourcepub fn event_remove_listener_js(element: &str, event: JsEvent, js_fn_name: &str)
Available on crate feature unsafe_ffi
and WebAssembly only.
pub fn event_remove_listener_js(element: &str, event: JsEvent, js_fn_name: &str)
unsafe_ffi
and WebAssembly only.(removeEventListenerJs)
Removes a JavaScript function event
listener from an element
.
Source#[no_mangle]pub unsafe extern "C" fn wasm_callback(callback_ptr: usize)
Available on crate feature unsafe_ffi
and WebAssembly only.
#[no_mangle]pub unsafe extern "C" fn wasm_callback(callback_ptr: usize)
unsafe_ffi
and WebAssembly only.Callback dispatcher for WebAssembly events.
- This function is used by JavaScript to invoke a Rust function pointer.
- It allows Rust event listeners to execute when triggered by JS.
- The
callback_ptr
is a function pointer cast from JS, which is then transmuted into a callable Rust function.
§Safety
callback_ptr
must be a valid function pointer.
§Example
#[unsafe(no_mangle)]
pub extern "C" fn my_callback() {
Js::console_log("Button clicked!");
}
Js::event_add_listener("#my_button", JsEvent::Click, my_callback);
Source§impl Js
§Web API history & navigation
impl Js
§Web API history & navigation
Sourcepub fn history_back()
Available on crate feature unsafe_ffi
and WebAssembly only.
pub fn history_back()
unsafe_ffi
and WebAssembly only.(back) Moves the browser back one step in the session history.
Sourcepub fn history_forward()
Available on crate feature unsafe_ffi
and WebAssembly only.
pub fn history_forward()
unsafe_ffi
and WebAssembly only.(forward) Moves the browser forward one step in the session history.
Sourcepub fn history_go(delta: i32)
Available on crate feature unsafe_ffi
and WebAssembly only.
pub fn history_go(delta: i32)
unsafe_ffi
and WebAssembly only.(go) Moves the browser to a specific point in the session history. Use negative values to go back, positive to go forward.
Sourcepub fn history_push_state(state: &str, title: &str, url: &str)
Available on crate feature unsafe_ffi
and WebAssembly only.
pub fn history_push_state(state: &str, title: &str, url: &str)
unsafe_ffi
and WebAssembly only.(pushState) Adds an entry to the session history stack.
Sourcepub fn history_replace_state(state: &str, title: &str, url: &str)
Available on crate feature unsafe_ffi
and WebAssembly only.
pub fn history_replace_state(state: &str, title: &str, url: &str)
unsafe_ffi
and WebAssembly only.(replaceState) Modifies the current history entry without creating a new one.
Sourcepub fn location_reload()
Available on crate feature unsafe_ffi
and WebAssembly only.
pub fn location_reload()
unsafe_ffi
and WebAssembly only.(reload) Reloads the current document.
Sourcepub fn location_assign(url: &str)
Available on crate feature unsafe_ffi
and WebAssembly only.
pub fn location_assign(url: &str)
unsafe_ffi
and WebAssembly only.(assign) Loads the specified URL.
Sourcepub fn location_replace(url: &str)
Available on crate feature unsafe_ffi
and WebAssembly only.
pub fn location_replace(url: &str)
unsafe_ffi
and WebAssembly only.(replace) Replaces the current document with the specified URL without creating a new entry in the history.
Source§impl Js
§Web API permissions
impl Js
§Web API permissions
Sourcepub fn permissions_query(permission: JsPermission) -> JsPermissionState
Available on crate feature unsafe_ffi
and WebAssembly only.
pub fn permissions_query(permission: JsPermission) -> JsPermissionState
unsafe_ffi
and WebAssembly only.(query) Queries the status of a given permission.
Returns Granted
, Denied
, Prompt
, or Unknown
if unsupported.
Source§impl Js
impl Js
Sourcepub fn set_canvas(id: &str)
Available on crate feature unsafe_ffi
and WebAssembly only.
pub fn set_canvas(id: &str)
unsafe_ffi
and WebAssembly only.Sets the active canvas by ID.
Sourcepub fn fill_style(r: u8, g: u8, b: u8)
Available on crate feature unsafe_ffi
and WebAssembly only.
pub fn fill_style(r: u8, g: u8, b: u8)
unsafe_ffi
and WebAssembly only.(fillStyle) Sets the color or style for filling shapes.
Sourcepub fn stroke_style(r: u8, g: u8, b: u8)
Available on crate feature unsafe_ffi
and WebAssembly only.
pub fn stroke_style(r: u8, g: u8, b: u8)
unsafe_ffi
and WebAssembly only.(strokeStyle) Sets the color or style for lines.
Sourcepub fn fill_rect(x: f64, y: f64, w: f64, h: f64)
Available on crate feature unsafe_ffi
and WebAssembly only.
pub fn fill_rect(x: f64, y: f64, w: f64, h: f64)
unsafe_ffi
and WebAssembly only.(fillRect) Draws a filled rectangle.
Sourcepub fn draw_line(x1: f64, y1: f64, x2: f64, y2: f64)
Available on crate feature unsafe_ffi
and WebAssembly only.
pub fn draw_line(x1: f64, y1: f64, x2: f64, y2: f64)
unsafe_ffi
and WebAssembly only.Sourcepub fn draw_circle(x: f64, y: f64, radius: f64)
Available on crate feature unsafe_ffi
and WebAssembly only.
pub fn draw_circle(x: f64, y: f64, radius: f64)
unsafe_ffi
and WebAssembly only.Auto Trait Implementations§
impl Freeze for Js
impl RefUnwindSafe for Js
impl Send for Js
impl Sync for Js
impl Unpin for Js
impl UnwindSafe for Js
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
Source§impl<T> ByteSized for T
impl<T> ByteSized for T
Source§const BYTE_ALIGN: usize = _
const BYTE_ALIGN: usize = _
Source§fn byte_align(&self) -> usize
fn byte_align(&self) -> usize
Source§fn ptr_size_ratio(&self) -> [usize; 2]
fn ptr_size_ratio(&self) -> [usize; 2]
Source§impl<T, R> Chain<R> for Twhere
T: ?Sized,
impl<T, R> Chain<R> for Twhere
T: ?Sized,
Source§impl<T> ExtAny for T
impl<T> ExtAny for T
Source§fn type_hash_with<H: Hasher>(&self, hasher: H) -> u64
fn type_hash_with<H: Hasher>(&self, hasher: H) -> u64
TypeId
of Self
using a custom hasher.Source§fn as_any_mut(&mut self) -> &mut dyn Anywhere
Self: Sized,
fn as_any_mut(&mut self) -> &mut dyn Anywhere
Self: Sized,
Source§impl<T> ExtMem for Twhere
T: ?Sized,
impl<T> ExtMem for Twhere
T: ?Sized,
Source§const NEEDS_DROP: bool = _
const NEEDS_DROP: bool = _
Source§fn mem_align_of<T>() -> usize
fn mem_align_of<T>() -> usize
Source§fn mem_align_of_val(&self) -> usize
fn mem_align_of_val(&self) -> usize
Source§fn mem_size_of<T>() -> usize
fn mem_size_of<T>() -> usize
Source§fn mem_size_of_val(&self) -> usize
fn mem_size_of_val(&self) -> usize
Source§fn mem_needs_drop(&self) -> bool
fn mem_needs_drop(&self) -> bool
true
if dropping values of this type matters. Read moreSource§fn mem_forget(self)where
Self: Sized,
fn mem_forget(self)where
Self: Sized,
self
without running its destructor. Read moreSource§fn mem_replace(&mut self, other: Self) -> Selfwhere
Self: Sized,
fn mem_replace(&mut self, other: Self) -> Selfwhere
Self: Sized,
Source§unsafe fn mem_zeroed<T>() -> T
unsafe fn mem_zeroed<T>() -> T
unsafe_layout
only.T
represented by the all-zero byte-pattern. Read moreSource§unsafe fn mem_transmute_copy<Src, Dst>(src: &Src) -> Dst
unsafe fn mem_transmute_copy<Src, Dst>(src: &Src) -> Dst
unsafe_layout
only.T
represented by the all-zero byte-pattern. Read moreSource§fn mem_as_bytes(&self) -> &[u8] ⓘ
fn mem_as_bytes(&self) -> &[u8] ⓘ
unsafe_slice
only.§impl<S> FromSample<S> for S
impl<S> FromSample<S> for S
fn from_sample_(s: S) -> S
Source§impl<T> Hook for T
impl<T> Hook for T
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
§fn in_current_span(self) -> Instrumented<Self> ⓘ
fn in_current_span(self) -> Instrumented<Self> ⓘ
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> ⓘ
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> ⓘ
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