Rollup merge of #76534 - notriddle:doc-comments, r=jyn514

Add doc comments for From impls

https://github.com/rust-lang/rust/issues/51430
This commit is contained in:
Ralf Jung
2020-09-16 08:24:56 +02:00
committed by GitHub
2 changed files with 12 additions and 0 deletions

View File

@@ -112,6 +112,14 @@ impl<T, E> Poll<Option<Result<T, E>>> {
#[stable(feature = "futures_api", since = "1.36.0")]
impl<T> From<T> for Poll<T> {
/// Convert to a `Ready` variant.
///
/// # Example
///
/// ```
/// # use core::task::Poll;
/// assert_eq!(Poll::from(true), Poll::Ready(true));
/// ```
fn from(t: T) -> Poll<T> {
Poll::Ready(t)
}