pub enum ClipboardOnlyReason {
Requested,
ElevatedTarget,
}Expand description
Why the text was left on the clipboard instead of being delivered.
Variants§
Requested
Caller asked for it.
ElevatedTarget
Target runs at a higher integrity level, so UIPI would discard the input.
Trait Implementations§
Source§impl Clone for ClipboardOnlyReason
impl Clone for ClipboardOnlyReason
Source§fn clone(&self) -> ClipboardOnlyReason
fn clone(&self) -> ClipboardOnlyReason
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for ClipboardOnlyReason
Source§impl Debug for ClipboardOnlyReason
impl Debug for ClipboardOnlyReason
impl Eq for ClipboardOnlyReason
Source§impl PartialEq for ClipboardOnlyReason
impl PartialEq for ClipboardOnlyReason
impl StructuralPartialEq for ClipboardOnlyReason
Auto Trait Implementations§
impl Freeze for ClipboardOnlyReason
impl RefUnwindSafe for ClipboardOnlyReason
impl Send for ClipboardOnlyReason
impl Sync for ClipboardOnlyReason
impl Unpin for ClipboardOnlyReason
impl UnsafeUnpin for ClipboardOnlyReason
impl UnwindSafe for ClipboardOnlyReason
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