20 lines
320 B
Rust
20 lines
320 B
Rust
|
#![crate_name = "foo"]
|
||
|
|
||
|
pub struct Body;
|
||
|
|
||
|
impl Body {
|
||
|
pub fn empty() -> Self {
|
||
|
Body
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|
||
|
impl Default for Body {
|
||
|
// @has foo/struct.Body.html '//a/@href' '../foo/struct.Body.html#method.empty'
|
||
|
|
||
|
/// Returns [`Body::empty()`](Body::empty).
|
||
|
fn default() -> Body {
|
||
|
Body::empty()
|
||
|
}
|
||
|
}
|