Module std::prelude::v1
[−]
[src]
The first version of the prelude of The Rust Standard Library.
Reexports
use core::prelude::v1::*; |
pub use marker::{Copy, Send, Sized, Sync}; |
pub use ops::{Drop, Fn, FnMut, FnOnce}; |
pub use mem::drop; |
pub use boxed::Box; |
pub use borrow::ToOwned; |
pub use clone::Clone; |
pub use cmp::{PartialEq, PartialOrd, Eq, Ord}; |
pub use convert::{AsRef, AsMut, Into, From}; |
pub use default::Default; |
pub use iter::{Iterator, Extend, IntoIterator}; |
pub use iter::{DoubleEndedIterator, ExactSizeIterator}; |
pub use option::Option::{self, Some, None}; |
pub use result::Result::{self, Ok, Err}; |
pub use slice::SliceConcatExt; |
pub use string::{String, ToString}; |
pub use vec::Vec; |