Type Alias rust_corosync::Result
source · pub type Result<T> = Result<T, CsError>;Expand description
Result type returned from most corosync library calls. Contains a CsError and possibly other data as required
Aliased Type§
enum Result<T> {
Ok(T),
Err(CsError),
}