pub struct Get<'clipboard> {
pub(crate) platform: Get<'clipboard>,
}
Expand description
A builder for an operation that gets a value from the clipboard.
Fields§
§platform: Get<'clipboard>
Implementations§
source§impl Get<'_>
impl Get<'_>
sourcepub fn text(self) -> Result<String, Error>
pub fn text(self) -> Result<String, Error>
Completes the “get” operation by fetching UTF-8 text from the clipboard.
sourcepub fn image(self) -> Result<ImageData<'static>, Error>
pub fn image(self) -> Result<ImageData<'static>, Error>
Completes the “get” operation by fetching image data from the clipboard and returning the decoded pixels.
Any image data placed on the clipboard with set_image
will be possible read back, using
this function. However it’s of not guaranteed that an image placed on the clipboard by any
other application will be of a supported format.
Trait Implementations§
source§impl GetExtLinux for Get<'_>
impl GetExtLinux for Get<'_>
source§fn clipboard(self, selection: LinuxClipboardKind) -> Self
fn clipboard(self, selection: LinuxClipboardKind) -> Self
Sets the clipboard the operation will retrieve data from. Read more
impl Sealed for Get<'_>
Auto Trait Implementations§
impl<'clipboard> Freeze for Get<'clipboard>
impl<'clipboard> !RefUnwindSafe for Get<'clipboard>
impl<'clipboard> Send for Get<'clipboard>
impl<'clipboard> Sync for Get<'clipboard>
impl<'clipboard> Unpin for Get<'clipboard>
impl<'clipboard> !UnwindSafe for Get<'clipboard>
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