pub type Result<T> = Result<T, CsError>;
Result type returned from most corosync library calls. Contains a CsError and possibly other data as required
pub enum Result<T> { Ok(T), Err(CsError), }
Contains the success value
Contains the error value