pub trait GetExtLinux: Sealed {
// Required method
fn clipboard(self, selection: LinuxClipboardKind) -> Self;
}
Expand description
Linux-specific extensions to the Get
builder.
Required Methods§
Sourcefn clipboard(self, selection: LinuxClipboardKind) -> Self
fn clipboard(self, selection: LinuxClipboardKind) -> Self
Sets the clipboard the operation will retrieve data from.
If wayland support is enabled and available, attempting to use the Secondary clipboard will return an error.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.