This repository was archived by the owner on Nov 9, 2019. It is now read-only.
File tree Expand file tree Collapse file tree 4 files changed +5
-5
lines changed Expand file tree Collapse file tree 4 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -34,5 +34,5 @@ members = [
34
34
" aktoro-context" ,
35
35
" aktoro-runtime" ,
36
36
37
- " examples/hello_world" ,
37
+ # "examples/hello_world", # See: https://github.com/rust-lang/rust/pull/61872
38
38
]
Original file line number Diff line number Diff line change @@ -59,7 +59,7 @@ impl<A: Actor> Spawned<A> {
59
59
60
60
/// Tries send an action over the actor's
61
61
/// control channel, returning a future resolving
62
- /// with the result returned by the action
62
+ /// with the result returned by the action
63
63
/// handler.
64
64
pub fn try_send_action < D > ( & mut self , action : D ) -> ControllerRes < A :: Output , ControllerError < A > >
65
65
where
Original file line number Diff line number Diff line change @@ -38,7 +38,7 @@ impl Error {
38
38
}
39
39
40
40
pub ( crate ) fn add_err ( self , err : Error ) -> Error {
41
- let mut error;
41
+ let error;
42
42
match ( self . kind , err. kind ) {
43
43
( ErrorKind :: Multiple ( mut errs) , ErrorKind :: Multiple ( mut errs_) ) => {
44
44
errs. append ( & mut errs_) ;
Original file line number Diff line number Diff line change @@ -17,10 +17,10 @@ pub mod prelude {
17
17
pub use aktoro_raw:: Runtime as RawRuntime ;
18
18
pub use aktoro_raw:: Spawned ;
19
19
20
- pub use aktoro_raw:: Receiver as RawReceiver ;
21
- pub use aktoro_raw:: Sender as RawSender ;
22
20
pub use aktoro_raw:: Controlled as RawControlled ;
23
21
pub use aktoro_raw:: Controller as RawController ;
22
+ pub use aktoro_raw:: Receiver as RawReceiver ;
23
+ pub use aktoro_raw:: Sender as RawSender ;
24
24
pub use aktoro_raw:: Updated as RawUpdated ;
25
25
pub use aktoro_raw:: Updater as RawUpdater ;
26
26
You can’t perform that action at this time.
0 commit comments