Docs.rs
async-component-core-0.7.0
async-component-core 0.7.0
Docs.rs crate page
Apache-2.0
Links
Repository
crates.io
Source
Owners
storycraft
Dependencies
atomic-waker ^1.0.0
normal
futures-core ^0.3.25
normal
Versions
30%
of the crate is documented
Go to latest version
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
Privacy policy
Rust
Rust website
The Book
Standard Library API Reference
Rust by Example
The Cargo Guide
Clippy Documentation
☰
State
Required Associated Types
Output
Required Methods
update
Implementors
In async_component_core
?
Trait
async_component_core
::
State
source
·
[
−
]
pub trait State { type
Output
; fn
update
(this:
&mut
Self) ->
Option
<Self::
Output
>; }
Required Associated Types
§
source
type
Output
Required Methods
§
source
fn
update
(this:
&mut
Self) ->
Option
<Self::
Output
>
Implementors
§
source
§
impl<T>
State
for
StateCell
<T>
§
type
Output
=
()
source
§
impl<T:
Stream
+
Unpin
>
State
for
StreamCell
<T>
§
type
Output
= <T as
Stream
>::
Item