pub struct Clipboard {
pub reads: Vec<Kind>,
pub write: Option<Content>,
}Expand description
A set of clipboard requests.
Fields§
§reads: Vec<Kind>The read requests the runtime must fulfill.
write: Option<Content>The content that must be written to the clipboard by the runtime, if any.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl !Freeze for Clipboard
impl RefUnwindSafe for Clipboard
impl Send for Clipboard
impl Sync for Clipboard
impl Unpin for Clipboard
impl UnsafeUnpin for Clipboard
impl UnwindSafe for 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