pub struct Get<'clipboard> { /* private fields */ }
Expand description
A builder for an operation that gets a value from the 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.
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