pub struct InsertAction {
pub insert: Vec<RangeInclusive<u32>>,
pub error: Option<Error>,
}Fields§
§insert: Vec<RangeInclusive<u32>>§error: Option<Error>Trait Implementations§
Source§impl Clone for InsertAction
impl Clone for InsertAction
Source§fn clone(&self) -> InsertAction
fn clone(&self) -> InsertAction
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 InsertAction
impl Debug for InsertAction
Source§impl From<RangeInclusive<char>> for InsertAction
impl From<RangeInclusive<char>> for InsertAction
Source§fn from(range: RangeInclusive<char>) -> Self
fn from(range: RangeInclusive<char>) -> Self
Converts to this type from the input type.
Source§impl From<RangeInclusive<u32>> for InsertAction
impl From<RangeInclusive<u32>> for InsertAction
Source§fn from(range: RangeInclusive<u32>) -> Self
fn from(range: RangeInclusive<u32>) -> Self
Converts to this type from the input type.
Source§impl From<char> for InsertAction
impl From<char> for InsertAction
Auto Trait Implementations§
impl Freeze for InsertAction
impl RefUnwindSafe for InsertAction
impl Send for InsertAction
impl Sync for InsertAction
impl Unpin for InsertAction
impl UnwindSafe for InsertAction
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