use reqwest::Error; use crate::FlowyError; impl std::convert::From for FlowyError { fn from(error: Error) -> Self { FlowyError::http().with_context(error) } }