pub type DefaultRelaysResponse<C> = Result<Vec<RelayId>, <C as ClientApi>::Error>;
pub enum DefaultRelaysResponse<C> { Ok(Vec<RelayId>), Err(<C as ClientApi>::Error), }
Contains the success value
Contains the error value