pub struct CombinedClipboardContext<G, S>(pub G, pub S)
where
G: ClipboardProvider,
S: ClipboardProvider;Expand description
Combined, use different clipboard context for getting & setting.
Useful to combine different clipboard contexts to get the best of both worlds.
This may be constructed using helpers such as
X11BinClipboardContext::new_with_x11 or
X11BinClipboardContext::with_x11.
Tuple Fields§
§0: G§1: STrait Implementations§
Source§impl<G, S> ClipboardProvider for CombinedClipboardContext<G, S>where
G: ClipboardProvider,
S: ClipboardProvider,
impl<G, S> ClipboardProvider for CombinedClipboardContext<G, S>where
G: ClipboardProvider,
S: ClipboardProvider,
Source§fn get_contents(&mut self) -> ClipResult<String>
fn get_contents(&mut self) -> ClipResult<String>
Method to get the clipboard contents as a String
Source§fn set_contents(&mut self, contents: String) -> ClipResult<()>
fn set_contents(&mut self, contents: String) -> ClipResult<()>
Method to set the clipboard contents as a String
Auto Trait Implementations§
impl<G, S> Freeze for CombinedClipboardContext<G, S>
impl<G, S> RefUnwindSafe for CombinedClipboardContext<G, S>where
G: RefUnwindSafe,
S: RefUnwindSafe,
impl<G, S> Send for CombinedClipboardContext<G, S>
impl<G, S> Sync for CombinedClipboardContext<G, S>
impl<G, S> Unpin for CombinedClipboardContext<G, S>
impl<G, S> UnwindSafe for CombinedClipboardContext<G, S>where
G: UnwindSafe,
S: UnwindSafe,
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more