pub struct TestPatch(pub usize, pub usize, pub String);
Expand description
This file contains some simple helpers for loading test data. Its used by benchmarking and testing code.
(position, delete length, insert content).
Tuple Fields§
§0: usize
§1: usize
§2: String
Trait Implementations§
Source§impl<'de> Deserialize<'de> for TestPatch
impl<'de> Deserialize<'de> for TestPatch
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
Auto Trait Implementations§
impl Freeze for TestPatch
impl RefUnwindSafe for TestPatch
impl Send for TestPatch
impl Sync for TestPatch
impl Unpin for TestPatch
impl UnwindSafe for TestPatch
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