pub trait ClipboardControl: Send + Sync {
// Required methods
fn is_done(&self) -> ServiceResult<bool>;
fn currently_providing(&self) -> ServiceResult<Option<ClipboardProviding>>;
fn provide_next(&self) -> ServiceResult<()>;
fn destroy(&self) -> ServiceResult<()>;
}