Skip to content

Commit

Permalink
Remove references to private futures
Browse files Browse the repository at this point in the history
They don't seem to resolve unfortunately :(
  • Loading branch information
thomaseizinger committed Jul 29, 2022
1 parent 360f022 commit 422956f
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 4 deletions.
2 changes: 0 additions & 2 deletions src/recv_future.rs
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,6 @@ impl<A> Future for ReceiveFuture<A> {
///
/// This type only exists because the variants of an enum are public and we would leak
/// implementation details like the variant names into the public API.
///
/// This future is the counterpart to [`Sending`](crate::send_future::Sending).
enum Receiving<A> {
New(Receiver<A, RxStrong>),
WaitingToReceive(Waiting<A>),
Expand Down
2 changes: 0 additions & 2 deletions src/send_future.rs
Original file line number Diff line number Diff line change
Expand Up @@ -163,8 +163,6 @@ impl SendFuture<ActorErasedSending, Broadcast> {
}

/// The core state machine around sending a message to an actor's mailbox.
///
/// This future is the counterpart to [`Receiving`](crate::recv_future::Receiving).
enum Sending<A, Rc: RefCounter> {
New {
msg: SentMessage<A>,
Expand Down

0 comments on commit 422956f

Please sign in to comment.