pub type Result<T> = Result<T, PlayerctlError>;
pub enum Result<T> { Ok(T), Err(PlayerctlError), }
Contains the success value
Contains the error value