pub type Result<T> = Result<T, IgtlError>;
Result type alias for OpenIGTLink operations
pub enum Result<T> { Ok(T), Err(IgtlError), }
Contains the success value
Contains the error value