Uh oh!
There was an error while loading. Please reload this page.
std: Stabilize/deprecate features for 1.4 - #28339
Conversation
rust-highfive
commented
Sep 10, 2015
r? @pcwalton (rust_highfive has picked a reviewer for you, use r? to override) |
b384ce1 to
b7a319dComparealexcrichton
commented
Sep 10, 2015
cc @rust-lang/libs r? @aturon |
1db2831 to
68e1b65CompareThere was a problem hiding this comment.
This needs a new issue number: this PR closes 27718.
Gankra
commented
Sep 10, 2015
I thought people didn't like |
There was a problem hiding this comment.
Are we really sure this is ready to be stabilized? I'm not sure the questions brought up in #27773 have been sufficiently addressed.
If you're sure this is ready to be stabilized, for the comment, I would suggest something more like "The exact meaning of the timeout is platform-specific; reads may block for longer than the given duration. There is no portable way to detect if a read has timed out due to this timeout; the connection should be closed if a read fails with WouldBlock or TimedOut."
There was a problem hiding this comment.
Yes, the purpose of this function is to bind the SO_RCVTIMEO option, and it's what it's doing on all platforms. Whether or not this is exactly what you want for your application will depend on use cases, but this provides the appropriate Rust interface to getting/setting these options.
There was a problem hiding this comment.
To elaborate on this a bit: we discussed #27773 extensively in the libs team meeting, and I've written up the results of that discussion in a new comment there.
alexcrichton
commented
Sep 11, 2015
We discussed this in the libs team meaning, but the ship has long sailed on this. These functions have gone through RFCs multiple times almost, and the functionality is already stable on |
68e1b65 to
b20b26fCompareThe FCP is coming to a close and 1.4 is coming out soon, so this brings in the libs team decision for all library features this cycle. Stabilized APIs: * `<Box<str>>::into_string` * `Arc::downgrade` * `Arc::get_mut` * `Arc::make_mut` * `Arc::try_unwrap` * `Box::from_raw` * `Box::into_raw` * `CStr::to_str` * `CStr::to_string_lossy` * `CString::from_raw` * `CString::into_raw` * `IntoRawFd::into_raw_fd` * `IntoRawFd` * `IntoRawHandle::into_raw_handle` * `IntoRawHandle` * `IntoRawSocket::into_raw_socket` * `IntoRawSocket` * `Rc::downgrade` * `Rc::get_mut` * `Rc::make_mut` * `Rc::try_unwrap` * `Result::expect` * `String::into_boxed_slice` * `TcpSocket::read_timeout` * `TcpSocket::set_read_timeout` * `TcpSocket::set_write_timeout` * `TcpSocket::write_timeout` * `UdpSocket::read_timeout` * `UdpSocket::set_read_timeout` * `UdpSocket::set_write_timeout` * `UdpSocket::write_timeout` * `Vec::append` * `Vec::split_off` * `VecDeque::append` * `VecDeque::retain` * `VecDeque::split_off` * `rc::Weak::upgrade` * `rc::Weak` * `slice::Iter::as_slice` * `slice::IterMut::into_slice` * `str::CharIndices::as_str` * `str::Chars::as_str` * `str::split_at_mut` * `str::split_at` * `sync::Weak::upgrade` * `sync::Weak` * `thread::park_timeout` * `thread::sleep` Deprecated APIs * `BTreeMap::with_b` * `BTreeSet::with_b` * `Option::as_mut_slice` * `Option::as_slice` * `Result::as_mut_slice` * `Result::as_slice` * `f32::from_str_radix` * `f64::from_str_radix` Closesrust-lang#27277Closesrust-lang#27718Closesrust-lang#27736Closesrust-lang#27764Closesrust-lang#27765Closesrust-lang#27766Closesrust-lang#27767Closesrust-lang#27768Closesrust-lang#27769Closesrust-lang#27771Closesrust-lang#27773Closesrust-lang#27775Closesrust-lang#27776Closesrust-lang#27785Closesrust-lang#27792Closesrust-lang#27795Closesrust-lang#27797
aturon
commented
Sep 11, 2015
In particular, if we want to rename, we have to deal with the existing stable functionality. In general, we signed off on completing the collection reform RFC implementation by stabilizing consistent APIs across the collections where they're appropriate. |
aturon
commented
Sep 11, 2015
OK, I've checked this over, and r=me -- but I want to give others a bit more time to comment before we send to bors. |
Gankra
commented
Sep 11, 2015
shrug works for me |
Gankra
commented
Sep 11, 2015
Wait Or we could deprecate LinkedList HMMM??? |
b20b26f to
f0b1326Comparealexcrichton
commented
Sep 13, 2015
@bors: r=aturon |
bors
commented
Sep 13, 2015
📌 Commit f0b1326 has been approved by |
bors
commented
Sep 13, 2015
The FCP is coming to a close and 1.4 is coming out soon, so this brings in the libs team decision for all library features this cycle. Stabilized APIs: * `<Box<str>>::into_string` * `Arc::downgrade` * `Arc::get_mut` * `Arc::make_mut` * `Arc::try_unwrap` * `Box::from_raw` * `Box::into_raw` * `CStr::to_str` * `CStr::to_string_lossy` * `CString::from_raw` * `CString::into_raw` * `IntoRawFd::into_raw_fd` * `IntoRawFd` * `IntoRawHandle::into_raw_handle` * `IntoRawHandle` * `IntoRawSocket::into_raw_socket` * `IntoRawSocket` * `Rc::downgrade` * `Rc::get_mut` * `Rc::make_mut` * `Rc::try_unwrap` * `Result::expect` * `String::into_boxed_slice` * `TcpSocket::read_timeout` * `TcpSocket::set_read_timeout` * `TcpSocket::set_write_timeout` * `TcpSocket::write_timeout` * `UdpSocket::read_timeout` * `UdpSocket::set_read_timeout` * `UdpSocket::set_write_timeout` * `UdpSocket::write_timeout` * `Vec::append` * `Vec::split_off` * `VecDeque::append` * `VecDeque::retain` * `VecDeque::split_off` * `rc::Weak::upgrade` * `rc::Weak` * `slice::Iter::as_slice` * `slice::IterMut::into_slice` * `str::CharIndices::as_str` * `str::Chars::as_str` * `str::split_at_mut` * `str::split_at` * `sync::Weak::upgrade` * `sync::Weak` * `thread::park_timeout` * `thread::sleep` Deprecated APIs * `BTreeMap::with_b` * `BTreeSet::with_b` * `Option::as_mut_slice` * `Option::as_slice` * `Result::as_mut_slice` * `Result::as_slice` * `f32::from_str_radix` * `f64::from_str_radix` Closes#27277Closes#27718Closes#27736Closes#27764Closes#27765Closes#27766Closes#27767Closes#27768Closes#27769Closes#27771Closes#27773Closes#27775Closes#27776Closes#27785Closes#27792Closes#27795Closes#27797
The FCP is coming to a close and 1.4 is coming out soon, so this brings in the
libs team decision for all library features this cycle.
Stabilized APIs:
<Box<str>>::into_stringArc::downgradeArc::get_mutArc::make_mutArc::try_unwrapBox::from_rawBox::into_rawCStr::to_strCStr::to_string_lossyCString::from_rawCString::into_rawIntoRawFd::into_raw_fdIntoRawFdIntoRawHandle::into_raw_handleIntoRawHandleIntoRawSocket::into_raw_socketIntoRawSocketRc::downgradeRc::get_mutRc::make_mutRc::try_unwrapResult::expectString::into_boxed_sliceTcpSocket::read_timeoutTcpSocket::set_read_timeoutTcpSocket::set_write_timeoutTcpSocket::write_timeoutUdpSocket::read_timeoutUdpSocket::set_read_timeoutUdpSocket::set_write_timeoutUdpSocket::write_timeoutVec::appendVec::split_offVecDeque::appendVecDeque::retainVecDeque::split_offrc::Weak::upgraderc::Weakslice::Iter::as_sliceslice::IterMut::into_slicestr::CharIndices::as_strstr::Chars::as_strstr::split_at_mutstr::split_atsync::Weak::upgradesync::Weakthread::park_timeoutthread::sleepDeprecated APIs
BTreeMap::with_bBTreeSet::with_bOption::as_mut_sliceOption::as_sliceResult::as_mut_sliceResult::as_slicef32::from_str_radixf64::from_str_radixCloses#27277
Closes#27718
Closes#27736
Closes#27764
Closes#27765
Closes#27766
Closes#27767
Closes#27768
Closes#27769
Closes#27771
Closes#27773
Closes#27775
Closes#27776
Closes#27785
Closes#27792
Closes#27795
Closes#27797