We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
lib.rs
1 parent cdb76c9 commit c1b9fe4Copy full SHA for c1b9fe4
mithril-client-wasm/src/client_wasm.rs
@@ -50,6 +50,7 @@ impl From<MithrilEvent> for MithrilEventWasm {
50
}
51
52
53
+/// Structure that wraps a [Client] and enables its functions to be used in WASM
54
#[wasm_bindgen]
55
pub struct MithrilClient {
56
client: Client,
mithril-client-wasm/src/lib.rs
@@ -1,3 +1,5 @@
1
+#![warn(missing_docs)]
2
+//! Implementation of the 'mithril-client' library in WASM
3
mod client_wasm;
4
5
pub use client_wasm::MithrilClient;
0 commit comments