forked from mirror/async-std
backlink channel types
Signed-off-by: Yoshua Wuyts <yoshuawuyts@gmail.com>
This commit is contained in:
parent
4e1d79adb1
commit
31f129ebe7
1 changed files with 9 additions and 1 deletions
|
@ -71,6 +71,11 @@ pub fn channel<T>(cap: usize) -> (Sender<T>, Receiver<T>) {
|
|||
|
||||
/// The sending side of a channel.
|
||||
///
|
||||
/// This struct is created by the [`channel`] function. See its
|
||||
/// documentation for more.
|
||||
///
|
||||
/// [`channel`]: fn.channel.html
|
||||
///
|
||||
/// # Examples
|
||||
///
|
||||
/// ```
|
||||
|
@ -298,8 +303,11 @@ impl<T> fmt::Debug for Sender<T> {
|
|||
|
||||
/// The receiving side of a channel.
|
||||
///
|
||||
/// This type implements the [`Stream`] trait, which means it can act as an asynchronous iterator.
|
||||
/// This type receives messages by calling `recv`. But it also implements the [`Stream`] trait,
|
||||
/// which means it can act as an asynchronous iterator. This struct is created by the [`channel`]
|
||||
/// function. See its documentation for more.
|
||||
///
|
||||
/// [`channel`]: fn.channel.html
|
||||
/// [`Stream`]: ../stream/trait.Stream.html
|
||||
///
|
||||
/// # Examples
|
||||
|
|
Loading…
Reference in a new issue