Add documentation for impl<T> From<T> for Poll<T>
This commit is contained in:
@@ -112,6 +112,14 @@ impl<T, E> Poll<Option<Result<T, E>>> {
|
|||||||
|
|
||||||
#[stable(feature = "futures_api", since = "1.36.0")]
|
#[stable(feature = "futures_api", since = "1.36.0")]
|
||||||
impl<T> From<T> for Poll<T> {
|
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> {
|
fn from(t: T) -> Poll<T> {
|
||||||
Poll::Ready(t)
|
Poll::Ready(t)
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user