Enum screeps_api::sync::SyncError
[−]
[src]
pub enum SyncError {
Io(Error),
Url(ParseError),
Tls(Error),
}Error that can occur from building a SyncApi.
Variants
Io(Error)The tokio core failed to start.
Url(ParseError)The URL failed to parse.
Tls(Error)The TLS connector failed.
Trait Implementations
impl Debug for SyncError[src]
impl From<Error> for SyncError[src]
impl From<ParseError> for SyncError[src]
fn from(e: ParseError) -> Self[src]
Performs the conversion.
impl From<Error> for SyncError[src]
impl Display for SyncError[src]
fn fmt(&self, f: &mut Formatter) -> Result[src]
Formats the value using the given formatter. Read more