rt: Remove threaded_scheduler() and basic_scheduler() (#2876)

Co-authored-by: Alice Ryhl <[email protected]>
Co-authored-by: Carl Lerche <[email protected]>
This commit is contained in:
Lucio Franco
2020-10-12 13:44:54 -04:00
committed by GitHub
co-authored by Alice Ryhl Carl Lerche
parent 0893841f31
commit 8880222036
90 changed files with 1480 additions and 1698 deletions
+1 -1
View File
@@ -33,7 +33,7 @@ use std::io;
/// # }
/// # }
/// #
/// # #[tokio::main(core_threads = 1)]
/// # #[tokio::main(flavor = "current_thread")]
/// # async fn main() -> Result<(), std::io::Error> {
/// let my_async_read = File::open("filename.txt").await?;
/// let my_stream_of_bytes = FramedRead::new(my_async_read, BytesCodec::new());