Skip to content

Commit

Permalink
fix(clipcatctl): fix lints and errors
Browse files Browse the repository at this point in the history
  • Loading branch information
xrelkd committed Dec 31, 2023
1 parent 1f3658a commit 5d489db
Showing 1 changed file with 15 additions and 15 deletions.
30 changes: 15 additions & 15 deletions clipcatctl/src/error.rs
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ pub enum Error {
Client { source: clipcat_client::Error },

#[snafu(display("Error occurs while interacting with server, error: {error}"))]
OperationError { error: String },
Operation { error: String },

#[snafu(display("{error}"))]
EncodeData { error: clipcat_base::ClipEntryError },
Expand All @@ -44,85 +44,85 @@ impl From<clipcat_client::Error> for Error {

impl From<clipcat_client::error::InsertClipError> for Error {
fn from(err: clipcat_client::error::InsertClipError) -> Self {
Self::OperationError { error: err.to_string() }
Self::Operation { error: err.to_string() }
}
}

impl From<clipcat_client::error::GetClipError> for Error {
fn from(err: clipcat_client::error::GetClipError) -> Self {
Self::OperationError { error: err.to_string() }
Self::Operation { error: err.to_string() }
}
}

impl From<clipcat_client::error::GetCurrentClipError> for Error {
fn from(err: clipcat_client::error::GetCurrentClipError) -> Self {
Self::OperationError { error: err.to_string() }
Self::Operation { error: err.to_string() }
}
}

impl From<clipcat_client::error::GetLengthError> for Error {
fn from(err: clipcat_client::error::GetLengthError) -> Self {
Self::OperationError { error: err.to_string() }
Self::Operation { error: err.to_string() }
}
}

impl From<clipcat_client::error::ClearClipError> for Error {
fn from(err: clipcat_client::error::ClearClipError) -> Self {
Self::OperationError { error: err.to_string() }
Self::Operation { error: err.to_string() }
}
}

impl From<clipcat_client::error::RemoveClipError> for Error {
fn from(err: clipcat_client::error::RemoveClipError) -> Self {
Self::OperationError { error: err.to_string() }
Self::Operation { error: err.to_string() }
}
}

impl From<clipcat_client::error::BatchRemoveClipError> for Error {
fn from(err: clipcat_client::error::BatchRemoveClipError) -> Self {
Self::OperationError { error: err.to_string() }
Self::Operation { error: err.to_string() }
}
}

impl From<clipcat_client::error::MarkClipError> for Error {
fn from(err: clipcat_client::error::MarkClipError) -> Self {
Self::OperationError { error: err.to_string() }
Self::Operation { error: err.to_string() }
}
}

impl From<clipcat_client::error::UpdateClipError> for Error {
fn from(err: clipcat_client::error::UpdateClipError) -> Self {
Self::OperationError { error: err.to_string() }
Self::Operation { error: err.to_string() }
}
}

impl From<clipcat_client::error::ListClipError> for Error {
fn from(err: clipcat_client::error::ListClipError) -> Self {
Self::OperationError { error: err.to_string() }
Self::Operation { error: err.to_string() }
}
}

impl From<clipcat_client::error::EnableWatcherError> for Error {
fn from(err: clipcat_client::error::EnableWatcherError) -> Self {
Self::OperationError { error: err.to_string() }
Self::Operation { error: err.to_string() }
}
}

impl From<clipcat_client::error::DisableWatcherError> for Error {
fn from(err: clipcat_client::error::DisableWatcherError) -> Self {
Self::OperationError { error: err.to_string() }
Self::Operation { error: err.to_string() }
}
}

impl From<clipcat_client::error::ToggleWatcherError> for Error {
fn from(err: clipcat_client::error::ToggleWatcherError) -> Self {
Self::OperationError { error: err.to_string() }
Self::Operation { error: err.to_string() }
}
}

impl From<clipcat_client::error::GetWatcherStateError> for Error {
fn from(err: clipcat_client::error::GetWatcherStateError) -> Self {
Self::OperationError { error: err.to_string() }
Self::Operation { error: err.to_string() }
}
}

Expand Down

0 comments on commit 5d489db

Please sign in to comment.