mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 14:55:26 +00:00
rustdoc: use a newline instead of <br>
to format code headers
Since these elements now use `white-space: pre-wrap` since
784665d4ce
, it's fine to use newlines
for formatting, which is smaller and a bit less complicated.
This commit is contained in:
parent
5dd0e1b7ae
commit
8307fd7901
@ -289,7 +289,7 @@ pub(crate) fn print_where_clause<'a, 'tcx: 'a>(
|
|||||||
if f.alternate() {
|
if f.alternate() {
|
||||||
f.write_str(" ")?;
|
f.write_str(" ")?;
|
||||||
} else {
|
} else {
|
||||||
f.write_str("<br>")?;
|
f.write_str("\n")?;
|
||||||
}
|
}
|
||||||
|
|
||||||
match pred {
|
match pred {
|
||||||
@ -352,7 +352,7 @@ pub(crate) fn print_where_clause<'a, 'tcx: 'a>(
|
|||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
let mut br_with_padding = String::with_capacity(6 * indent + 28);
|
let mut br_with_padding = String::with_capacity(6 * indent + 28);
|
||||||
br_with_padding.push_str("<br>");
|
br_with_padding.push_str("\n");
|
||||||
|
|
||||||
let padding_amout =
|
let padding_amout =
|
||||||
if ending == Ending::Newline { indent + 4 } else { indent + "fn where ".len() };
|
if ending == Ending::Newline { indent + 4 } else { indent + "fn where ".len() };
|
||||||
@ -360,16 +360,16 @@ pub(crate) fn print_where_clause<'a, 'tcx: 'a>(
|
|||||||
for _ in 0..padding_amout {
|
for _ in 0..padding_amout {
|
||||||
br_with_padding.push_str(" ");
|
br_with_padding.push_str(" ");
|
||||||
}
|
}
|
||||||
let where_preds = where_preds.to_string().replace("<br>", &br_with_padding);
|
let where_preds = where_preds.to_string().replace("\n", &br_with_padding);
|
||||||
|
|
||||||
if ending == Ending::Newline {
|
if ending == Ending::Newline {
|
||||||
let mut clause = " ".repeat(indent.saturating_sub(1));
|
let mut clause = " ".repeat(indent.saturating_sub(1));
|
||||||
write!(clause, "<span class=\"where fmt-newline\">where{where_preds},</span>")?;
|
write!(clause, "<span class=\"where fmt-newline\">where{where_preds},</span>")?;
|
||||||
clause
|
clause
|
||||||
} else {
|
} else {
|
||||||
// insert a <br> tag after a single space but before multiple spaces at the start
|
// insert a newline after a single space but before multiple spaces at the start
|
||||||
if indent == 0 {
|
if indent == 0 {
|
||||||
format!("<br><span class=\"where\">where{where_preds}</span>")
|
format!("\n<span class=\"where\">where{where_preds}</span>")
|
||||||
} else {
|
} else {
|
||||||
// put the first one on the same line as the 'where' keyword
|
// put the first one on the same line as the 'where' keyword
|
||||||
let where_preds = where_preds.replacen(&br_with_padding, " ", 1);
|
let where_preds = where_preds.replacen(&br_with_padding, " ", 1);
|
||||||
@ -1315,7 +1315,8 @@ impl clean::FnDecl {
|
|||||||
|
|
||||||
/// * `header_len`: The length of the function header and name. In other words, the number of
|
/// * `header_len`: The length of the function header and name. In other words, the number of
|
||||||
/// characters in the function declaration up to but not including the parentheses.
|
/// characters in the function declaration up to but not including the parentheses.
|
||||||
/// <br>Used to determine line-wrapping.
|
/// This is expected to go into a `<pre>`/`code-header` block, so indentation and newlines
|
||||||
|
/// are preserved.
|
||||||
/// * `indent`: The number of spaces to indent each successive line with, if line-wrapping is
|
/// * `indent`: The number of spaces to indent each successive line with, if line-wrapping is
|
||||||
/// necessary.
|
/// necessary.
|
||||||
pub(crate) fn full_print<'a, 'tcx: 'a>(
|
pub(crate) fn full_print<'a, 'tcx: 'a>(
|
||||||
@ -1363,7 +1364,7 @@ impl clean::FnDecl {
|
|||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
if i > 0 {
|
if i > 0 {
|
||||||
args.push_str("<br>");
|
args.push_str("\n");
|
||||||
}
|
}
|
||||||
if input.is_const {
|
if input.is_const {
|
||||||
args.push_str("const ");
|
args.push_str("const ");
|
||||||
@ -1389,7 +1390,7 @@ impl clean::FnDecl {
|
|||||||
let mut args = args.into_inner();
|
let mut args = args.into_inner();
|
||||||
|
|
||||||
if self.c_variadic {
|
if self.c_variadic {
|
||||||
args.push_str(",<br> ...");
|
args.push_str(",\n ...");
|
||||||
args_plain.push_str(", ...");
|
args_plain.push_str(", ...");
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1399,24 +1400,20 @@ impl clean::FnDecl {
|
|||||||
|
|
||||||
let declaration_len = header_len + args_plain.len() + arrow_plain.len();
|
let declaration_len = header_len + args_plain.len() + arrow_plain.len();
|
||||||
let output = if declaration_len > 80 {
|
let output = if declaration_len > 80 {
|
||||||
let full_pad = format!("<br>{}", " ".repeat(indent + 4));
|
let full_pad = format!("\n{}", " ".repeat(indent + 4));
|
||||||
let close_pad = format!("<br>{}", " ".repeat(indent));
|
let close_pad = format!("\n{}", " ".repeat(indent));
|
||||||
format!(
|
format!(
|
||||||
"({pad}{args}{close}){arrow}",
|
"({pad}{args}{close}){arrow}",
|
||||||
pad = if self.inputs.values.is_empty() { "" } else { &full_pad },
|
pad = if self.inputs.values.is_empty() { "" } else { &full_pad },
|
||||||
args = args.replace("<br>", &full_pad),
|
args = args.replace("\n", &full_pad),
|
||||||
close = close_pad,
|
close = close_pad,
|
||||||
arrow = arrow
|
arrow = arrow
|
||||||
)
|
)
|
||||||
} else {
|
} else {
|
||||||
format!("({args}){arrow}", args = args.replace("<br>", " "), arrow = arrow)
|
format!("({args}){arrow}", args = args.replace("\n", " "), arrow = arrow)
|
||||||
};
|
};
|
||||||
|
|
||||||
if f.alternate() {
|
write!(f, "{}", output)
|
||||||
write!(f, "{}", output.replace("<br>", "\n"))
|
|
||||||
} else {
|
|
||||||
write!(f, "{}", output)
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -77,7 +77,7 @@ struct AsyncFdReadyGuard<'a, T> { x: &'a T }
|
|||||||
|
|
||||||
impl Foo {
|
impl Foo {
|
||||||
// @has async_fn/struct.Foo.html
|
// @has async_fn/struct.Foo.html
|
||||||
// @has - '//*[@class="method"]' 'pub async fn complicated_lifetimes( &self, context: &impl Bar) -> impl Iterator<Item = &usize>'
|
// @has - '//*[@class="method"]' 'pub async fn complicated_lifetimes( &self, context: &impl Bar ) -> impl Iterator<Item = &usize>'
|
||||||
pub async fn complicated_lifetimes(&self, context: &impl Bar) -> impl Iterator<Item = &usize> {}
|
pub async fn complicated_lifetimes(&self, context: &impl Bar) -> impl Iterator<Item = &usize> {}
|
||||||
// taken from `tokio` as an example of a method that was particularly bad before
|
// taken from `tokio` as an example of a method that was particularly bad before
|
||||||
// @has - '//*[@class="method"]' "pub async fn readable<T>(&self) -> Result<AsyncFdReadyGuard<'_, T>, ()>"
|
// @has - '//*[@class="method"]' "pub async fn readable<T>(&self) -> Result<AsyncFdReadyGuard<'_, T>, ()>"
|
||||||
|
@ -31,7 +31,7 @@ impl Trait<{1 + 2}> for u8 {}
|
|||||||
impl<const N: usize> Trait<N> for [u8; N] {}
|
impl<const N: usize> Trait<N> for [u8; N] {}
|
||||||
|
|
||||||
// @has foo/struct.Foo.html '//pre[@class="rust item-decl"]' \
|
// @has foo/struct.Foo.html '//pre[@class="rust item-decl"]' \
|
||||||
// 'pub struct Foo<const N: usize>where u8: Trait<N>'
|
// 'pub struct Foo<const N: usize> where u8: Trait<N>'
|
||||||
pub struct Foo<const N: usize> where u8: Trait<N>;
|
pub struct Foo<const N: usize> where u8: Trait<N>;
|
||||||
// @has foo/struct.Bar.html '//pre[@class="rust item-decl"]' 'pub struct Bar<T, const N: usize>(_)'
|
// @has foo/struct.Bar.html '//pre[@class="rust item-decl"]' 'pub struct Bar<T, const N: usize>(_)'
|
||||||
pub struct Bar<T, const N: usize>([T; N]);
|
pub struct Bar<T, const N: usize>([T; N]);
|
||||||
|
@ -1,9 +1,23 @@
|
|||||||
<code>pub trait Write {
|
<code>pub trait Write {
|
||||||
// Required methods
|
// Required methods
|
||||||
fn <a href="#tymethod.poll_write" class="fn">poll_write</a>(<br />        self: <a class="enum" href="{{channel}}/core/option/enum.Option.html" title="enum core::option::Option">Option</a><<a class="struct" href="{{channel}}/alloc/string/struct.String.html" title="struct alloc::string::String">String</a>>,<br />        cx: &mut <a class="enum" href="{{channel}}/core/option/enum.Option.html" title="enum core::option::Option">Option</a><<a class="struct" href="{{channel}}/alloc/string/struct.String.html" title="struct alloc::string::String">String</a>>,<br />        buf: &mut [<a class="primitive" href="{{channel}}/std/primitive.usize.html">usize</a>]<br />    ) -> <a class="enum" href="{{channel}}/core/option/enum.Option.html" title="enum core::option::Option">Option</a><<a class="enum" href="{{channel}}/core/result/enum.Result.html" title="enum core::result::Result">Result</a><<a class="primitive" href="{{channel}}/std/primitive.usize.html">usize</a>, <a class="struct" href="struct.Error.html" title="struct foo::Error">Error</a>>>;
|
fn <a href="#tymethod.poll_write" class="fn">poll_write</a>(
|
||||||
<span class="item-spacer" /> fn <a href="#tymethod.poll_flush" class="fn">poll_flush</a>(<br />        self: <a class="enum" href="{{channel}}/core/option/enum.Option.html" title="enum core::option::Option">Option</a><<a class="struct" href="{{channel}}/alloc/string/struct.String.html" title="struct alloc::string::String">String</a>>,<br />        cx: &mut <a class="enum" href="{{channel}}/core/option/enum.Option.html" title="enum core::option::Option">Option</a><<a class="struct" href="{{channel}}/alloc/string/struct.String.html" title="struct alloc::string::String">String</a>><br />    ) -> <a class="enum" href="{{channel}}/core/option/enum.Option.html" title="enum core::option::Option">Option</a><<a class="enum" href="{{channel}}/core/result/enum.Result.html" title="enum core::result::Result">Result</a><<a class="primitive" href="{{channel}}/std/primitive.unit.html">()</a>, <a class="struct" href="struct.Error.html" title="struct foo::Error">Error</a>>>;
|
self: <a class="enum" href="{{channel}}/core/option/enum.Option.html" title="enum core::option::Option">Option</a><<a class="struct" href="{{channel}}/alloc/string/struct.String.html" title="struct alloc::string::String">String</a>>,
|
||||||
<span class="item-spacer" /> fn <a href="#tymethod.poll_close" class="fn">poll_close</a>(<br />        self: <a class="enum" href="{{channel}}/core/option/enum.Option.html" title="enum core::option::Option">Option</a><<a class="struct" href="{{channel}}/alloc/string/struct.String.html" title="struct alloc::string::String">String</a>>,<br />        cx: &mut <a class="enum" href="{{channel}}/core/option/enum.Option.html" title="enum core::option::Option">Option</a><<a class="struct" href="{{channel}}/alloc/string/struct.String.html" title="struct alloc::string::String">String</a>><br />    ) -> <a class="enum" href="{{channel}}/core/option/enum.Option.html" title="enum core::option::Option">Option</a><<a class="enum" href="{{channel}}/core/result/enum.Result.html" title="enum core::result::Result">Result</a><<a class="primitive" href="{{channel}}/std/primitive.unit.html">()</a>, <a class="struct" href="struct.Error.html" title="struct foo::Error">Error</a>>>;
|
cx: &mut <a class="enum" href="{{channel}}/core/option/enum.Option.html" title="enum core::option::Option">Option</a><<a class="struct" href="{{channel}}/alloc/string/struct.String.html" title="struct alloc::string::String">String</a>>,
|
||||||
|
buf: &mut [<a class="primitive" href="{{channel}}/std/primitive.usize.html">usize</a>]
|
||||||
|
) -> <a class="enum" href="{{channel}}/core/option/enum.Option.html" title="enum core::option::Option">Option</a><<a class="enum" href="{{channel}}/core/result/enum.Result.html" title="enum core::result::Result">Result</a><<a class="primitive" href="{{channel}}/std/primitive.usize.html">usize</a>, <a class="struct" href="struct.Error.html" title="struct foo::Error">Error</a>>>;
|
||||||
|
<span class="item-spacer" /> fn <a href="#tymethod.poll_flush" class="fn">poll_flush</a>(
|
||||||
|
self: <a class="enum" href="{{channel}}/core/option/enum.Option.html" title="enum core::option::Option">Option</a><<a class="struct" href="{{channel}}/alloc/string/struct.String.html" title="struct alloc::string::String">String</a>>,
|
||||||
|
cx: &mut <a class="enum" href="{{channel}}/core/option/enum.Option.html" title="enum core::option::Option">Option</a><<a class="struct" href="{{channel}}/alloc/string/struct.String.html" title="struct alloc::string::String">String</a>>
|
||||||
|
) -> <a class="enum" href="{{channel}}/core/option/enum.Option.html" title="enum core::option::Option">Option</a><<a class="enum" href="{{channel}}/core/result/enum.Result.html" title="enum core::result::Result">Result</a><<a class="primitive" href="{{channel}}/std/primitive.unit.html">()</a>, <a class="struct" href="struct.Error.html" title="struct foo::Error">Error</a>>>;
|
||||||
|
<span class="item-spacer" /> fn <a href="#tymethod.poll_close" class="fn">poll_close</a>(
|
||||||
|
self: <a class="enum" href="{{channel}}/core/option/enum.Option.html" title="enum core::option::Option">Option</a><<a class="struct" href="{{channel}}/alloc/string/struct.String.html" title="struct alloc::string::String">String</a>>,
|
||||||
|
cx: &mut <a class="enum" href="{{channel}}/core/option/enum.Option.html" title="enum core::option::Option">Option</a><<a class="struct" href="{{channel}}/alloc/string/struct.String.html" title="struct alloc::string::String">String</a>>
|
||||||
|
) -> <a class="enum" href="{{channel}}/core/option/enum.Option.html" title="enum core::option::Option">Option</a><<a class="enum" href="{{channel}}/core/result/enum.Result.html" title="enum core::result::Result">Result</a><<a class="primitive" href="{{channel}}/std/primitive.unit.html">()</a>, <a class="struct" href="struct.Error.html" title="struct foo::Error">Error</a>>>;
|
||||||
|
|
||||||
// Provided method
|
// Provided method
|
||||||
fn <a href="#method.poll_write_vectored" class="fn">poll_write_vectored</a>(<br />        self: <a class="enum" href="{{channel}}/core/option/enum.Option.html" title="enum core::option::Option">Option</a><<a class="struct" href="{{channel}}/alloc/string/struct.String.html" title="struct alloc::string::String">String</a>>,<br />        cx: &mut <a class="enum" href="{{channel}}/core/option/enum.Option.html" title="enum core::option::Option">Option</a><<a class="struct" href="{{channel}}/alloc/string/struct.String.html" title="struct alloc::string::String">String</a>>,<br />        bufs: &[<a class="primitive" href="{{channel}}/std/primitive.usize.html">usize</a>]<br />    ) -> <a class="enum" href="{{channel}}/core/option/enum.Option.html" title="enum core::option::Option">Option</a><<a class="enum" href="{{channel}}/core/result/enum.Result.html" title="enum core::result::Result">Result</a><<a class="primitive" href="{{channel}}/std/primitive.usize.html">usize</a>, <a class="struct" href="struct.Error.html" title="struct foo::Error">Error</a>>> { ... }
|
fn <a href="#method.poll_write_vectored" class="fn">poll_write_vectored</a>(
|
||||||
}</code>
|
self: <a class="enum" href="{{channel}}/core/option/enum.Option.html" title="enum core::option::Option">Option</a><<a class="struct" href="{{channel}}/alloc/string/struct.String.html" title="struct alloc::string::String">String</a>>,
|
||||||
|
cx: &mut <a class="enum" href="{{channel}}/core/option/enum.Option.html" title="enum core::option::Option">Option</a><<a class="struct" href="{{channel}}/alloc/string/struct.String.html" title="struct alloc::string::String">String</a>>,
|
||||||
|
bufs: &[<a class="primitive" href="{{channel}}/std/primitive.usize.html">usize</a>]
|
||||||
|
) -> <a class="enum" href="{{channel}}/core/option/enum.Option.html" title="enum core::option::Option">Option</a><<a class="enum" href="{{channel}}/core/result/enum.Result.html" title="enum core::result::Result">Result</a><<a class="primitive" href="{{channel}}/std/primitive.usize.html">usize</a>, <a class="struct" href="struct.Error.html" title="struct foo::Error">Error</a>>> { ... }
|
||||||
|
}</code>
|
@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
// @has foo/trait.LendingIterator.html
|
// @has foo/trait.LendingIterator.html
|
||||||
pub trait LendingIterator {
|
pub trait LendingIterator {
|
||||||
// @has - '//*[@id="associatedtype.Item"]//h4[@class="code-header"]' "type Item<'a>where Self: 'a"
|
// @has - '//*[@id="associatedtype.Item"]//h4[@class="code-header"]' "type Item<'a> where Self: 'a"
|
||||||
type Item<'a> where Self: 'a;
|
type Item<'a> where Self: 'a;
|
||||||
|
|
||||||
// @has - '//*[@id="tymethod.next"]//h4[@class="code-header"]' \
|
// @has - '//*[@id="tymethod.next"]//h4[@class="code-header"]' \
|
||||||
@ -23,7 +23,7 @@ impl LendingIterator for () {
|
|||||||
pub struct Infinite<T>(T);
|
pub struct Infinite<T>(T);
|
||||||
|
|
||||||
// @has foo/trait.LendingIterator.html
|
// @has foo/trait.LendingIterator.html
|
||||||
// @has - '//*[@id="associatedtype.Item-2"]//h4[@class="code-header"]' "type Item<'a>where Self: 'a = &'a T"
|
// @has - '//*[@id="associatedtype.Item-2"]//h4[@class="code-header"]' "type Item<'a> where Self: 'a = &'a T"
|
||||||
impl<T> LendingIterator for Infinite<T> {
|
impl<T> LendingIterator for Infinite<T> {
|
||||||
type Item<'a> where Self: 'a = &'a T;
|
type Item<'a> where Self: 'a = &'a T;
|
||||||
|
|
||||||
|
@ -11,7 +11,7 @@ pub use impl_trait_aux::func;
|
|||||||
// @has impl_trait/fn.func2.html
|
// @has impl_trait/fn.func2.html
|
||||||
// @has - '//pre[@class="rust item-decl"]' "func2<T>("
|
// @has - '//pre[@class="rust item-decl"]' "func2<T>("
|
||||||
// @has - '//pre[@class="rust item-decl"]' "_x: impl Deref<Target = Option<T>> + Iterator<Item = T>,"
|
// @has - '//pre[@class="rust item-decl"]' "_x: impl Deref<Target = Option<T>> + Iterator<Item = T>,"
|
||||||
// @has - '//pre[@class="rust item-decl"]' "_y: impl Iterator<Item = u8>)"
|
// @has - '//pre[@class="rust item-decl"]' "_y: impl Iterator<Item = u8> )"
|
||||||
// @!has - '//pre[@class="rust item-decl"]' 'where'
|
// @!has - '//pre[@class="rust item-decl"]' 'where'
|
||||||
pub use impl_trait_aux::func2;
|
pub use impl_trait_aux::func2;
|
||||||
|
|
||||||
|
@ -2,5 +2,5 @@
|
|||||||
|
|
||||||
pub trait Bar {}
|
pub trait Bar {}
|
||||||
|
|
||||||
// @has foo/struct.Foo.html '//pre' 'pub struct Foo<T>(pub T)where T: Bar;'
|
// @has foo/struct.Foo.html '//pre' 'pub struct Foo<T>(pub T) where T: Bar;'
|
||||||
pub struct Foo<T>(pub T) where T: Bar;
|
pub struct Foo<T>(pub T) where T: Bar;
|
||||||
|
@ -98,7 +98,7 @@ pub mod outer {
|
|||||||
pub use reexports::foo;
|
pub use reexports::foo;
|
||||||
// @has 'foo/outer/inner/fn.foo_crate.html' '//pre[@class="rust item-decl"]' 'pub(crate) fn foo_crate()'
|
// @has 'foo/outer/inner/fn.foo_crate.html' '//pre[@class="rust item-decl"]' 'pub(crate) fn foo_crate()'
|
||||||
pub(crate) use reexports::foo_crate;
|
pub(crate) use reexports::foo_crate;
|
||||||
// @has 'foo/outer/inner/fn.foo_super.html' '//pre[@class="rust item-decl"]' 'pub(in outer) fn foo_super()'
|
// @has 'foo/outer/inner/fn.foo_super.html' '//pre[@class="rust item-decl"]' 'pub(in outer) fn foo_super( )'
|
||||||
pub(super) use::reexports::foo_super;
|
pub(super) use::reexports::foo_super;
|
||||||
// @!has 'foo/outer/inner/fn.foo_self.html'
|
// @!has 'foo/outer/inner/fn.foo_self.html'
|
||||||
pub(self) use reexports::foo_self;
|
pub(self) use reexports::foo_self;
|
||||||
|
@ -1 +1,3 @@
|
|||||||
<pre class="rust item-decl"><code>pub struct Simd<T>(_)<br /><span class="where">where<br />    T: <a class="trait" href="trait.MyTrait.html" title="trait foo::MyTrait">MyTrait</a></span>;</code></pre>
|
<pre class="rust item-decl"><code>pub struct Simd<T>(_)
|
||||||
|
<span class="where">where
|
||||||
|
T: <a class="trait" href="trait.MyTrait.html" title="trait foo::MyTrait">MyTrait</a></span>;</code></pre>
|
@ -1,8 +1,13 @@
|
|||||||
<pre class="rust item-decl"><code>pub trait TraitWhere {
|
<pre class="rust item-decl"><code>pub trait TraitWhere {
|
||||||
type <a href="#associatedtype.Item" class="associatedtype">Item</a><'a><br />       <span class="where">where Self: 'a</span>;
|
type <a href="#associatedtype.Item" class="associatedtype">Item</a><'a>
|
||||||
|
<span class="where">where Self: 'a</span>;
|
||||||
|
|
||||||
// Provided methods
|
// Provided methods
|
||||||
fn <a href="#method.func" class="fn">func</a>(self)<br />       <span class="where">where Self: <a class="trait" href="{{channel}}/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a></span> { ... }
|
fn <a href="#method.func" class="fn">func</a>(self)
|
||||||
<span class="item-spacer" /> fn <a href="#method.lines" class="fn">lines</a>(self) -> <a class="struct" href="{{channel}}/std/io/struct.Lines.html" title="struct std::io::Lines">Lines</a><Self><br />       <span class="where">where Self: <a class="trait" href="{{channel}}/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a></span> { ... }
|
<span class="where">where Self: <a class="trait" href="{{channel}}/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a></span> { ... }
|
||||||
<span class="item-spacer" /> fn <a href="#method.merge" class="fn">merge</a><T>(self, a: T)<br />       <span class="where">where Self: <a class="trait" href="{{channel}}/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,<br />             T: <a class="trait" href="{{channel}}/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a></span> { ... }
|
<span class="item-spacer" /> fn <a href="#method.lines" class="fn">lines</a>(self) -> <a class="struct" href="{{channel}}/std/io/struct.Lines.html" title="struct std::io::Lines">Lines</a><Self>
|
||||||
|
<span class="where">where Self: <a class="trait" href="{{channel}}/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a></span> { ... }
|
||||||
|
<span class="item-spacer" /> fn <a href="#method.merge" class="fn">merge</a><T>(self, a: T)
|
||||||
|
<span class="where">where Self: <a class="trait" href="{{channel}}/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,
|
||||||
|
T: <a class="trait" href="{{channel}}/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a></span> { ... }
|
||||||
}</code></pre>
|
}</code></pre>
|
@ -4,7 +4,7 @@ use std::io::Lines;
|
|||||||
|
|
||||||
pub trait MyTrait { fn dummy(&self) { } }
|
pub trait MyTrait { fn dummy(&self) { } }
|
||||||
|
|
||||||
// @has foo/struct.Alpha.html '//pre' "pub struct Alpha<A>(_)where A: MyTrait"
|
// @has foo/struct.Alpha.html '//pre' "pub struct Alpha<A>(_) where A: MyTrait"
|
||||||
pub struct Alpha<A>(A) where A: MyTrait;
|
pub struct Alpha<A>(A) where A: MyTrait;
|
||||||
// @has foo/trait.Bravo.html '//pre' "pub trait Bravo<B>where B: MyTrait"
|
// @has foo/trait.Bravo.html '//pre' "pub trait Bravo<B>where B: MyTrait"
|
||||||
pub trait Bravo<B> where B: MyTrait { fn get(&self, B: B); }
|
pub trait Bravo<B> where B: MyTrait { fn get(&self, B: B); }
|
||||||
|
@ -1,4 +1,5 @@
|
|||||||
<pre class="rust item-decl"><code>pub enum Cow<'a, B><span class="where fmt-newline">where<br />    B: <a class="trait" href="trait.ToOwned.html" title="trait foo::ToOwned">ToOwned</a><dyn <a class="trait" href="{{channel}}/core/clone/trait.Clone.html" title="trait core::clone::Clone">Clone</a>> + ?<a class="trait" href="{{channel}}/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a> + 'a,</span>{
|
<pre class="rust item-decl"><code>pub enum Cow<'a, B><span class="where fmt-newline">where
|
||||||
|
B: <a class="trait" href="trait.ToOwned.html" title="trait foo::ToOwned">ToOwned</a><dyn <a class="trait" href="{{channel}}/core/clone/trait.Clone.html" title="trait core::clone::Clone">Clone</a>> + ?<a class="trait" href="{{channel}}/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a> + 'a,</span>{
|
||||||
Borrowed(<a class="primitive" href="{{channel}}/std/primitive.reference.html">&'a B</a>),
|
Borrowed(<a class="primitive" href="{{channel}}/std/primitive.reference.html">&'a B</a>),
|
||||||
Whatever(<a class="primitive" href="{{channel}}/std/primitive.u32.html">u32</a>),
|
Whatever(<a class="primitive" href="{{channel}}/std/primitive.u32.html">u32</a>),
|
||||||
}</code></pre>
|
}</code></pre>
|
@ -1,4 +1,5 @@
|
|||||||
<pre class="rust item-decl"><code>pub struct Struct<'a, B><span class="where fmt-newline">where<br />    B: <a class="trait" href="trait.ToOwned.html" title="trait foo::ToOwned">ToOwned</a><dyn <a class="trait" href="{{channel}}/core/clone/trait.Clone.html" title="trait core::clone::Clone">Clone</a>> + ?<a class="trait" href="{{channel}}/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a> + 'a,</span>{
|
<pre class="rust item-decl"><code>pub struct Struct<'a, B><span class="where fmt-newline">where
|
||||||
|
B: <a class="trait" href="trait.ToOwned.html" title="trait foo::ToOwned">ToOwned</a><dyn <a class="trait" href="{{channel}}/core/clone/trait.Clone.html" title="trait core::clone::Clone">Clone</a>> + ?<a class="trait" href="{{channel}}/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a> + 'a,</span>{
|
||||||
pub a: <a class="primitive" href="{{channel}}/std/primitive.reference.html">&'a B</a>,
|
pub a: <a class="primitive" href="{{channel}}/std/primitive.reference.html">&'a B</a>,
|
||||||
pub b: <a class="primitive" href="{{channel}}/std/primitive.u32.html">u32</a>,
|
pub b: <a class="primitive" href="{{channel}}/std/primitive.u32.html">u32</a>,
|
||||||
}</code></pre>
|
}</code></pre>
|
@ -1,4 +1,5 @@
|
|||||||
<pre class="rust item-decl"><code>pub trait ToOwned<T><span class="where fmt-newline">where<br />    T: <a class="trait" href="{{channel}}/core/clone/trait.Clone.html" title="trait core::clone::Clone">Clone</a>,</span>{
|
<pre class="rust item-decl"><code>pub trait ToOwned<T><span class="where fmt-newline">where
|
||||||
|
T: <a class="trait" href="{{channel}}/core/clone/trait.Clone.html" title="trait core::clone::Clone">Clone</a>,</span>{
|
||||||
type <a href="#associatedtype.Owned" class="associatedtype">Owned</a>;
|
type <a href="#associatedtype.Owned" class="associatedtype">Owned</a>;
|
||||||
|
|
||||||
// Required methods
|
// Required methods
|
||||||
|
@ -1,3 +1,4 @@
|
|||||||
<pre class="rust item-decl"><code>pub union Union<'a, B><span class="where fmt-newline">where<br />    B: <a class="trait" href="trait.ToOwned.html" title="trait foo::ToOwned">ToOwned</a><dyn <a class="trait" href="{{channel}}/core/clone/trait.Clone.html" title="trait core::clone::Clone">Clone</a>> + ?<a class="trait" href="{{channel}}/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a> + 'a,</span>{
|
<pre class="rust item-decl"><code>pub union Union<'a, B><span class="where fmt-newline">where
|
||||||
|
B: <a class="trait" href="trait.ToOwned.html" title="trait foo::ToOwned">ToOwned</a><dyn <a class="trait" href="{{channel}}/core/clone/trait.Clone.html" title="trait core::clone::Clone">Clone</a>> + ?<a class="trait" href="{{channel}}/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a> + 'a,</span>{
|
||||||
/* private fields */
|
/* private fields */
|
||||||
}</code></pre>
|
}</code></pre>
|
Loading…
Reference in New Issue
Block a user