pub type LinkResult<T> = Result<T, LinkError>;
Result type for results where the error is a LinkError
LinkError
enum LinkResult<T> { Ok(T), Err(LinkError), }
Contains the success value
Contains the error value