Struct xmpp_parsers::rtt::Erase
source · pub struct Erase {
pub pos: Option<u32>,
pub num: u32,
}
Expand description
Supports the behavior of backspace key presses. Text is removed towards beginning of the message. This element is also used for all delete operations, including the backspace key, the delete key, and text block deletes.
Fields§
§pos: Option<u32>
Position in the message to start erasing from. If None, this means to start from the end of the message.
num: u32
Amount of characters to erase, to the left.
Trait Implementations§
source§impl PartialEq for Erase
impl PartialEq for Erase
impl StructuralPartialEq for Erase
Auto Trait Implementations§
impl RefUnwindSafe for Erase
impl Send for Erase
impl Sync for Erase
impl Unpin for Erase
impl UnwindSafe for Erase
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