Trait core::str::pattern::TwoWayStrategy [] [src]

trait TwoWayStrategy {
    type Output;
    fn use_early_reject() -> bool;
    fn rejecting(usize, usize) -> Self::Output;
    fn matching(usize, usize) -> Self::Output;
}
Unstable (pattern #27721)

: API not fully fleshed out and ready to be stabilized

Associated Types

type Output

Unstable (pattern #27721)

: API not fully fleshed out and ready to be stabilized

Required Methods

fn use_early_reject() -> bool

Unstable (pattern #27721)

: API not fully fleshed out and ready to be stabilized

fn rejecting(usize, usize) -> Self::Output

Unstable (pattern #27721)

: API not fully fleshed out and ready to be stabilized

fn matching(usize, usize) -> Self::Output

Unstable (pattern #27721)

: API not fully fleshed out and ready to be stabilized

Implementors