pub struct History { /* private fields */ }Implementations§
Source§impl History
impl History
pub fn with_limit(limit: usize) -> Self
Sourcepub fn record(
&mut self,
kind: EditKind,
mode: Mode,
doc: &Doc,
selection: Selection,
anchors: &[Anchor],
)
pub fn record( &mut self, kind: EditKind, mode: Mode, doc: &Doc, selection: Selection, anchors: &[Anchor], )
Record the state before an edit of kind; History::landed closes
it afterwards. A run of insertions leaves one step, so undo gives back
the word rather than the letter.
Sourcepub fn landed(&mut self, kind: EditKind, selection: Selection)
pub fn landed(&mut self, kind: EditKind, selection: Selection)
Close the edit, noting where it left the caret. The next edit joins this group only if it starts from exactly here.
Sourcepub fn interrupt(&mut self)
pub fn interrupt(&mut self)
Anything that is not an edit ends the group — a motion, a click, a focus change. Without this, typing a word, clicking elsewhere and typing again would undo as one step across two places.
Sourcepub fn undo(
&mut self,
mode: Mode,
doc: &Doc,
selection: Selection,
anchors: &[Anchor],
) -> Option<Step>
pub fn undo( &mut self, mode: Mode, doc: &Doc, selection: Selection, anchors: &[Anchor], ) -> Option<Step>
Step back, handing the caller the state to restore. Pushes what it was given onto the redo stack.
pub fn redo( &mut self, mode: Mode, doc: &Doc, selection: Selection, anchors: &[Anchor], ) -> Option<Step>
Trait Implementations§
Auto Trait Implementations§
impl Freeze for History
impl RefUnwindSafe for History
impl Send for History
impl Sync for History
impl Unpin for History
impl UnsafeUnpin for History
impl UnwindSafe for History
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
Source§fn in_current_span(self) -> Instrumented<Self> ⓘ
fn in_current_span(self) -> Instrumented<Self> ⓘ
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§impl<T> Pointable for T
impl<T> Pointable for T
impl<T> Read<Exclusive, BecauseExclusive> for Twhere
T: ?Sized,
Source§impl<R, P> ReadPrimitive<R> for P
impl<R, P> ReadPrimitive<R> for P
Source§fn read_from_little_endian(read: &mut R) -> Result<Self, Error>
fn read_from_little_endian(read: &mut R) -> Result<Self, Error>
Read this value from the supplied reader. Same as
ReadEndian::read_from_little_endian().