Skip to content
This repository has been archived by the owner on Jun 28, 2020. It is now read-only.

Derive Debug and Clone for Error #3

Merged
merged 1 commit into from
Dec 25, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Derive Debug and Clone for Error
Fix #1
  • Loading branch information
trinity-1686a committed Dec 24, 2018
commit 60550db1e8af46d6e111b727cf6842e89f0b0c61
1 change: 1 addition & 0 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ use serde::{de::DeserializeOwned, Serialize};
use std::fmt::Display;
use std::option::NoneError;

#[derive(Debug,Clone)]
pub enum Error {
Fetch(String),
SerDe(String),
Expand Down