Docs.rs
gsails-0.1.0
gsails 0.1.0
Permalink
Docs.rs crate page
GPL-3.0
Links
crates.io
Source
Owners
github:gear-tech:dev
breathx
Dependencies
futures ^0.3
normal
gear-core-errors ^1.4.2
normal
gprimitives ^1.4.2
normal
gstd ^1.4.2
normal
hashbrown ^0.14
normal
hex ^0.4
normal
parity-scale-codec ^3.6
normal
primitive-types ^0.12
normal
sails-macros ^0.1.0
normal
scale-info ^2.11
normal
spin ^0.9
normal
thiserror-no-std ^2.0
normal
gclient ^1.4.2
normal
gtest ^1.4.2
normal
Versions
3.13%
of the crate is documented
Platform
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
gsails
0.1.0
Reply
Required Associated Types
T
Required Methods
recv
Object Safety
Implementors
In gsails::calls
Trait
gsails
::
calls
::
Reply
Copy item path
source
·
[
−
]
pub trait Reply { type
T
; // Required method async fn
recv
(self) ->
Result
<Self::
T
>; }
Required Associated Types
§
source
type
T
Required Methods
§
source
async fn
recv
(self) ->
Result
<Self::
T
>
Object Safety
§
This trait is
not
object safe
.
Implementors
§
source
§
impl<TReplyFuture, TActionIo>
Reply
for
ActivationTicket
<TReplyFuture, TActionIo>
where TReplyFuture:
Future
<Output =
Result
<(
ActorId
,
Vec
<
u8
>)>>, TActionIo:
ActionIo
<Reply =
()
>,
§
type
T
=
ActorId
source
§
impl<TReplyFuture, TActionIo>
Reply
for
CallTicket
<TReplyFuture, TActionIo>
where TReplyFuture:
Future
<Output =
Result
<
Vec
<
u8
>>>, TActionIo:
ActionIo
,
§
type
T
= <TActionIo as
ActionIo
>::
Reply