How to return Ok unit type of std::result<(), E>?

泪湿孤枕 提交于 2021-01-21 06:43:59

问题


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 ()?


回答1:


The only value of type () is (), so just put that inside the Ok constructor:

fn f() -> Result<(), E> {
    Ok(())
}



回答2:


Use Ok(()) as in

fn f() -> Result<(), E> {
    Ok(())
}


来源:https://stackoverflow.com/questions/27945858/how-to-return-ok-unit-type-of-stdresult-e

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!