Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Closed
Changes from 1 commit
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
08b0aca
string: implement From<&String> for String
jsgf Apr 9, 2019
eba03d4
Fix convert module's documentation links
czipperz Apr 12, 2019
6bf94cd
Remove dangling ` in Into documentation
czipperz Apr 13, 2019
b701d32
Remove broken links to self in Into documentation
czipperz Apr 13, 2019
4a33ece
Remove blank lines in AsRef documentation
czipperz Apr 13, 2019
27ff536
Reorder blank lines in AsMut documentation
czipperz Apr 13, 2019
1e48da6
Escape &str in convert docs
czipperz Apr 13, 2019
1f5d510
Fix stray ` in previous change
czipperz Apr 14, 2019
c921aae
Include expression to wait for to the span of Await
topecongiro May 10, 2019
1ea7c5f
Update ui test
topecongiro May 10, 2019
e392db6
Update rustc book CLI docs.
ehuss May 12, 2019
d29f0d2
Move token tree related lexer state to a separate struct
matklad May 12, 2019
b91e0a3
move span and token to tt reader
matklad May 13, 2019
e249f2e
move raw span to tt reader
matklad May 13, 2019
ea93215
Bump measureme dependency to 0.3
wesleywiser May 14, 2019
7171bd1
README: Mention MSVC 2017+, not 2013(!)
scottmcm May 14, 2019
65d09ea
Move `box` from the stable keyword to unstable keywords list
Pulkit07 May 15, 2019
a2ffec3
Rollup merge of #59825 - jsgf:from-ref-string, r=sfackler
Centril May 15, 2019
5d77c07
Rollup merge of #59923 - czipperz:fix-convert-doc-links, r=steveklabnik
Centril May 15, 2019
1c4221a
Rollup merge of #60691 - topecongiro:await-macro-span, r=Centril
Centril May 15, 2019
c4a27f2
Rollup merge of #60763 - matklad:tt-parser, r=petrochenkov
Centril May 15, 2019
c5c1363
Rollup merge of #60769 - ehuss:rustc-cli-docs, r=steveklabnik
Centril May 15, 2019
a279989
Rollup merge of #60811 - wesleywiser:bump_measureme, r=varkor
Centril May 15, 2019
56b082a
Rollup merge of #60816 - scottmcm:vcpp-download-link, r=alexcrichton
Centril May 15, 2019
6a2c7e9
Rollup merge of #60851 - Pulkit07:issue60849, r=Centril
Centril May 15, 2019
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix stray ` in previous change
  • Loading branch information
czipperz committed Apr 14, 2019
commit 1f5d510604be553906cdcbb2eddaf5277faf543d
2 changes: 1 addition & 1 deletion src/libcore/convert.rs
Original file line number Diff line number Diff line change
Expand Up @@ -305,7 +305,7 @@ pub trait Into<T>: Sized {
///
/// # Generic Implementations
///
/// - `From<T>` for U` implies [`Into`]`<U> for T`
/// - `From<T> for U` implies [`Into`]`<U> for T`
/// - `From` is reflexive, which means that `From<T> for T` is implemented
///
/// # Examples
Expand Down