mirror of
https://github.com/rosenpass/rosenpass.git
synced 2026-02-28 06:23:08 -08:00
docs(option): fix docstring warnings
Signed-off-by: Paul Spooren <mail@aparcar.org>
This commit is contained in:
@@ -1,4 +1,6 @@
|
|||||||
|
/// A helper trait for turning any type value into `Some(value)`.
|
||||||
pub trait SomeExt: Sized {
|
pub trait SomeExt: Sized {
|
||||||
|
/// Wraps the calling value in `Some()`.
|
||||||
fn some(self) -> Option<Self> {
|
fn some(self) -> Option<Self> {
|
||||||
Some(self)
|
Some(self)
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user