mirror of
https://github.com/rust-unofficial/patterns
synced 2024-11-18 15:25:37 +00:00
b6e5414941
* rename baz() into main() and vice versa where applicable Fixes #49
84 lines
2.6 KiB
Markdown
84 lines
2.6 KiB
Markdown
# Easy doc initialization
|
|
|
|
## Description
|
|
|
|
If a struct takes significant effort to initialize, when writing docs, it can be quicker to wrap your example with a
|
|
function which takes the struct as an argument.
|
|
|
|
## Motivation
|
|
Sometimes there is a struct with multiple or complicated parameters and several methods.
|
|
Each of these methods should have examples.
|
|
|
|
For example:
|
|
|
|
```rust,ignore
|
|
struct Connection {
|
|
name: String,
|
|
stream: TcpStream,
|
|
}
|
|
|
|
impl Connection {
|
|
/// Sends a request over the connection.
|
|
///
|
|
/// # Example
|
|
/// ```no_run
|
|
/// # // Boilerplate are required to get an example working.
|
|
/// # let stream = TcpStream::connect("127.0.0.1:34254");
|
|
/// # let connection = Connection { name: "foo".to_owned(), stream };
|
|
/// # let request = Request::new("RequestId", RequestType::Get, "payload");
|
|
/// let response = connection.send_request(request);
|
|
/// assert!(response.is_ok());
|
|
/// ```
|
|
fn send_request(&self, request: Request) -> Result<Status, SendErr> {
|
|
// ...
|
|
}
|
|
|
|
/// Oh no, all that boilerplate needs to be repeated here!
|
|
fn check_status(&self) -> Status {
|
|
// ...
|
|
}
|
|
}
|
|
```
|
|
|
|
## Example
|
|
Instead of typing all of this boiler plate to create an `Connection` and `Request` it is easier to just create a wrapping dummy function which takes them as arguments:
|
|
|
|
```rust,ignore
|
|
struct Connection {
|
|
name: String,
|
|
stream: TcpStream,
|
|
}
|
|
|
|
impl Connection {
|
|
/// Sends a request over the connection.
|
|
///
|
|
/// # Example
|
|
/// ```
|
|
/// # fn call_send(connection: Connection, request: Request) {
|
|
/// let response = connection.send_request();
|
|
/// assert!(response.is_ok());
|
|
/// # }
|
|
/// ```
|
|
fn send_request(&self, request: Request) {
|
|
// ...
|
|
}
|
|
}
|
|
```
|
|
**Note** in the above example the line `assert!(response.is_ok());` will not actually run while testing because it is inside of a function which is never invoked.
|
|
|
|
## Advantages
|
|
|
|
This is much more concise and avoids repetitive code in examples.
|
|
|
|
## Disadvantages
|
|
|
|
As example is in a function, the code will not be tested. (Though it still will checked to make sure it compiles when running a `cargo test`)
|
|
So this pattern is most useful when need `no_run`. With this, you do not need to add `no_run`.
|
|
|
|
## Discussion
|
|
|
|
If assertions are not required this pattern works well.
|
|
|
|
If they are, an alternative can be to create a public method to create a dummy instance which is annotated with `#[doc(hidden)]` (so that users won't see it).
|
|
Then this method can be called inside of rustdoc because it is part of the crate's public API.
|