1use opennode::error::RequestError; 2 3#[derive(Debug)] 4pub enum Error { 5 /// An error reported by Opennode in the response body. 6 Opennode(RequestError), 7 /// A networking error communicating with the Opennode server. 8 Http(reqwest::Error), 9}