pub struct InputInsertTextParams {
pub text: String,
}Expand description
Typed params for Input.insertText.
Fields§
§text: StringText to insert into the focused element.
Trait Implementations§
Source§impl Clone for InputInsertTextParams
impl Clone for InputInsertTextParams
Source§fn clone(&self) -> InputInsertTextParams
fn clone(&self) -> InputInsertTextParams
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 Command for InputInsertTextParams
impl Command for InputInsertTextParams
Source§impl Debug for InputInsertTextParams
impl Debug for InputInsertTextParams
Source§impl<'de> Deserialize<'de> for InputInsertTextParams
impl<'de> Deserialize<'de> for InputInsertTextParams
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for InputInsertTextParams
impl PartialEq for InputInsertTextParams
Source§impl Serialize for InputInsertTextParams
impl Serialize for InputInsertTextParams
impl Eq for InputInsertTextParams
impl StructuralPartialEq for InputInsertTextParams
Auto Trait Implementations§
impl Freeze for InputInsertTextParams
impl RefUnwindSafe for InputInsertTextParams
impl Send for InputInsertTextParams
impl Sync for InputInsertTextParams
impl Unpin for InputInsertTextParams
impl UnsafeUnpin for InputInsertTextParams
impl UnwindSafe for InputInsertTextParams
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