pub enum PlatformTextInputQueryResult {
Range(Option<Utf16Range>),
Text(Option<String>),
Bounds(Option<Rect>),
Index(Option<u32>),
}Variants§
Trait Implementations§
Source§impl Clone for PlatformTextInputQueryResult
impl Clone for PlatformTextInputQueryResult
Source§fn clone(&self) -> PlatformTextInputQueryResult
fn clone(&self) -> PlatformTextInputQueryResult
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for PlatformTextInputQueryResult
impl Debug for PlatformTextInputQueryResult
Source§impl PartialEq for PlatformTextInputQueryResult
impl PartialEq for PlatformTextInputQueryResult
Source§fn eq(&self, other: &PlatformTextInputQueryResult) -> bool
fn eq(&self, other: &PlatformTextInputQueryResult) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for PlatformTextInputQueryResult
Auto Trait Implementations§
impl Freeze for PlatformTextInputQueryResult
impl RefUnwindSafe for PlatformTextInputQueryResult
impl Send for PlatformTextInputQueryResult
impl Sync for PlatformTextInputQueryResult
impl Unpin for PlatformTextInputQueryResult
impl UnsafeUnpin for PlatformTextInputQueryResult
impl UnwindSafe for PlatformTextInputQueryResult
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