[][src]Struct markedit::StartOfNextLine

pub struct StartOfNextLine<M> { /* fields omitted */ }

A Matcher which will match the start of the next top-level element after some inner Matcher matches.

Methods

impl<M> StartOfNextLine<M>[src]

pub const fn new(inner: M) -> Self[src]

Create a new StartOfNextLine matcher.

Trait Implementations

impl<M: Clone> Clone for StartOfNextLine<M>[src]

impl<M: Debug> Debug for StartOfNextLine<M>[src]

impl<M: Matcher> Matcher for StartOfNextLine<M>[src]

impl<M: PartialEq> PartialEq<StartOfNextLine<M>> for StartOfNextLine<M>[src]

impl<M> StructuralPartialEq for StartOfNextLine<M>[src]

Auto Trait Implementations

impl<M> RefUnwindSafe for StartOfNextLine<M> where
    M: RefUnwindSafe

impl<M> Send for StartOfNextLine<M> where
    M: Send

impl<M> Sync for StartOfNextLine<M> where
    M: Sync

impl<M> Unpin for StartOfNextLine<M> where
    M: Unpin

impl<M> UnwindSafe for StartOfNextLine<M> where
    M: UnwindSafe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.