Docs.rs
glory-core-0.3.1
glory-core 0.3.1
Permalink
Docs.rs crate page
MIT
OR
Apache-2.0
Links
Homepage
Repository
crates.io
Source
Owners
chrislearn
Dependencies
async-trait ^0.1.42
normal
base64 ^0.21
normal
cfg-if ^1
normal
config ^0.13
normal
educe ^0.5
normal
futures ^0.3
normal
futures-channel ^0.3
normal
glory-hot-reload ^0.3.1
normal
indexmap ^2.0
normal
js-sys ^0.3
normal
multimap ^0.9
normal
once_cell ^1.5.2
normal
parking_lot ^0.12
normal
paste ^1
normal
regex ^1
normal
salvo ^0.60
normal
serde ^1
normal
serde_json ^1
normal
smallvec ^1
normal
thiserror ^1
normal
tokio ^1
normal
tokio-util ^0.7
normal
tracing ^0.1
normal
url ^2
normal
wasm-bindgen ^0.2
normal
web-sys ^0.3
normal
percent-encoding ^2
normal
wasm-bindgen-futures ^0.4.31
normal
Versions
42.59%
of the crate is documented
Platform
i686-pc-windows-msvc
i686-unknown-linux-gnu
x86_64-apple-darwin
x86_64-pc-windows-msvc
x86_64-unknown-linux-gnu
Feature flags
docs.rs
About docs.rs
Badges
Builds
Metadata
Shorthand URLs
Download
Rustdoc JSON
Build queue
Privacy policy
Rust
Rust website
The Book
Standard Library API Reference
Rust by Example
The Cargo Guide
Clippy Documentation
☰
glory_core
0.3.1
ViewFactory
Required Methods
make_view
Implementors
In glory_core::view
?
Trait
glory_core
::
view
::
ViewFactory
source
·
[
−
]
pub trait ViewFactory { // Required method fn
make_view
(&self, parent: &mut
Scope
) ->
ViewId
; }
Required Methods
§
source
fn
make_view
(&self, parent: &mut
Scope
) ->
ViewId
Implementors
§
source
§
impl<F, T>
ViewFactory
for F
where F:
Fn
() -> T, T:
Widget
+ 'static,