1
Fork 0

Add documentation for impl<T> From<T> for Poll<T>

This commit is contained in:
Michael Howell 2020-09-08 23:38:24 -07:00
parent 78f4cbb1ef
commit d85db82960

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)
}