If I define a function:
fn f() -> Result<(), E> {
// How to return Ok()?
}
How can I return the Ok
in std::result
with the unit type ()
?
If I define a function:
fn f() -> Result<(), E> {
// How to return Ok()?
}
How can I return the Ok
in std::result
with the unit type ()
?
The only value of type ()
is ()
, so just put that inside the Ok
constructor:
fn f() -> Result<(), E> {
Ok(())
}
© 2022 - 2024 — McMap. All rights reserved.