pub struct InsertTextDto {
pub position: i64,
pub anchor: i64,
pub text: String,
}Fields§
§position: i64§anchor: i64§text: StringTrait Implementations§
Source§impl Clone for InsertTextDto
impl Clone for InsertTextDto
Source§fn clone(&self) -> InsertTextDto
fn clone(&self) -> InsertTextDto
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 InsertTextDto
impl Debug for InsertTextDto
Source§impl Default for InsertTextDto
impl Default for InsertTextDto
Source§fn default() -> InsertTextDto
fn default() -> InsertTextDto
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for InsertTextDto
impl<'de> Deserialize<'de> for InsertTextDto
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 InsertTextDto
impl PartialEq for InsertTextDto
Source§impl Serialize for InsertTextDto
impl Serialize for InsertTextDto
impl StructuralPartialEq for InsertTextDto
Auto Trait Implementations§
impl Freeze for InsertTextDto
impl RefUnwindSafe for InsertTextDto
impl Send for InsertTextDto
impl Sync for InsertTextDto
impl Unpin for InsertTextDto
impl UnsafeUnpin for InsertTextDto
impl UnwindSafe for InsertTextDto
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