Struct DELETE_WORD_AT_CURSOR
pub struct DELETE_WORD_AT_CURSOR { /* private fields */ }Expand description
In a Text Box node, deletes the characters until the next word boundary using delete. For example, in text that uses a left-to-right script it deletes the characters between the cursor position and the closest word boundary on the right side of the cursor.
Methods from Deref<Target = MessageType<CharacterRemovalMessageArguments>>§
pub fn as_ptr(&self) -> *mut MessageTypeWrapper
pub fn get_native(&self) -> Result<NonNull<c_void>, Error>
pub fn get_native(&self) -> Result<NonNull<c_void>, Error>
Gets a pointer to the backing C++ instance.
pub fn get_arguments_metaclass(&self) -> Result<Metaclass, Error>
pub fn get_arguments_metaclass(&self) -> Result<Metaclass, Error>
Gets the metaclass of the message arguments associated with the message type.
pub fn get_name(&self) -> Result<KanziString, Error>
pub fn get_name(&self) -> Result<KanziString, Error>
Gets the fully qualified name of the message type in the form “Class.MessageType”.
pub fn get_routing(&self) -> Result<MessageRouting, Error>
pub fn get_routing(&self) -> Result<MessageRouting, Error>
Gets the message routing of the message type.
pub fn compare(&self, rhs: &MessageType<T>) -> Result<bool, Error>
pub fn compare(&self, rhs: &MessageType<T>) -> Result<bool, Error>
Compares two message types.
pub fn get_editor_info(&self) -> Result<Option<EditorInfo>, Error>
pub fn get_editor_info(&self) -> Result<Option<EditorInfo>, Error>
Gets editor info for the message type.
pub fn as_abstract(&self) -> &MessageType<MessageArguments>
pub fn as_abstract(&self) -> &MessageType<MessageArguments>
Casts a MessageType reference to its abstract representation.
pub fn create_args(&self, domain: &Domain) -> Result<T, Error>
pub fn create_args(&self, domain: &Domain) -> Result<T, Error>
Creates an instance of MessageArguments for the specified message type.
Trait Implementations§
§impl Deref for DELETE_WORD_AT_CURSOR
impl Deref for DELETE_WORD_AT_CURSOR
§type Target = MessageType<CharacterRemovalMessageArguments>
type Target = MessageType<CharacterRemovalMessageArguments>
The resulting type after dereferencing.
§fn deref(&self) -> &MessageType<CharacterRemovalMessageArguments>
fn deref(&self) -> &MessageType<CharacterRemovalMessageArguments>
Dereferences the value.
impl LazyStatic for DELETE_WORD_AT_CURSOR
Auto Trait Implementations§
impl Freeze for DELETE_WORD_AT_CURSOR
impl RefUnwindSafe for DELETE_WORD_AT_CURSOR
impl Send for DELETE_WORD_AT_CURSOR
impl Sync for DELETE_WORD_AT_CURSOR
impl Unpin for DELETE_WORD_AT_CURSOR
impl UnwindSafe for DELETE_WORD_AT_CURSOR
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