Type Definition gns::GnsResult

source · []
pub type GnsResult<T> = Result<T, EResult>;
Expand description

Outcome of many functions from this library, basic type alias with steam sys::EResult as error. If the result is sys::EResult::k_EResultOK, the value can safely be wrapped, otherwise we return the error.

Trait Implementations

Converts to this type from the input type.