spinoso_regexp

Struct Source

source
pub struct Source { /* private fields */ }
Expand description

A Source represents the literal contents used to construct a given Regexp.

When Regexps are constructed with a /.../ literal, Regexp#source refers to the literal characters contained within the / delimiters. For example, /\t/.source.bytes has byte sequence [92, 116].

When Regexps are constructed with Regexp::compile, Regexp#source refers to the argument passed to compile. For example, Regexp.compile("\t").source.bytes has byte sequence [9].

Regexp#inspect prints "/#{source}/".

Implementations§

source§

impl Source

source

pub const fn new() -> Self

Construct a new, empty Source.

§Examples
use spinoso_regexp::Source;

const SOURCE: Source = Source::new();
assert!(SOURCE.pattern().is_empty());
assert!(SOURCE.options().as_display_modifier().is_empty());
source

pub const fn with_pattern_and_options( pattern: Vec<u8>, options: Options, ) -> Self

Construct a new Source with the given pattern and Options.

§Examples
use spinoso_regexp::{Options, Source};

let source = Source::with_pattern_and_options(
    b"Artichoke( Ruby)?".to_vec(),
    Options::with_ignore_case(),
);
assert_eq!(source.pattern(), b"Artichoke( Ruby)?");
assert_eq!(source.options().as_display_modifier(), "i");
source

pub const fn is_casefold(&self) -> bool

Whether this source was parsed with ignore case enabled.

§Examples
use spinoso_regexp::{Options, Source};

let source = Source::new();
assert!(!source.is_casefold());

let source = Source::with_pattern_and_options(
    b"Artichoke( Ruby)?".to_vec(),
    Options::with_ignore_case(),
);
assert!(source.is_casefold());
source

pub const fn is_literal(&self) -> bool

Whether the Regexp was parsed as a literal, e.g. '/artichoke/i.

This enables Ruby parsers to inject whether a Regexp is a literal to the core library. Literal Regexps have some special behavior regarding capturing groups and report parse failures differently.

A source’s literal flag can only be set using Options::try_from_int.

source

pub fn pattern(&self) -> &[u8]

Extracts a slice containing the entire pattern.

§Examples
use spinoso_regexp::{Options, Source};

let source = Source::with_pattern_and_options(
    b"Artichoke( Ruby)?".to_vec(),
    Options::with_ignore_case(),
);
assert_eq!(source.pattern(), b"Artichoke( Ruby)?");
source

pub const fn options(&self) -> Options

Return a copy of the underlying Options.

§Examples
use spinoso_regexp::{Options, Source};

let source = Source::with_pattern_and_options(
    b"Artichoke( Ruby)?".to_vec(),
    Options::with_ignore_case(),
);
assert_eq!(source.options().as_display_modifier(), "i");

Trait Implementations§

source§

impl Clone for Source

source§

fn clone(&self) -> Source

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for Source

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Default for Source

source§

fn default() -> Source

Returns the “default value” for a type. Read more
source§

impl From<&Config> for Source

source§

fn from(config: &Config) -> Self

Converts to this type from the input type.
source§

impl From<&Source> for Config

source§

fn from(source: &Source) -> Self

Converts to this type from the input type.
source§

impl From<Config> for Source

source§

fn from(config: Config) -> Self

Converts to this type from the input type.
source§

impl From<Source> for Config

source§

fn from(source: Source) -> Self

Converts to this type from the input type.
source§

impl Hash for Source

source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
source§

impl Ord for Source

source§

fn cmp(&self, other: &Source) -> Ordering

This method returns an Ordering between self and other. Read more
1.21.0 · source§

fn max(self, other: Self) -> Self
where Self: Sized,

Compares and returns the maximum of two values. Read more
1.21.0 · source§

fn min(self, other: Self) -> Self
where Self: Sized,

Compares and returns the minimum of two values. Read more
1.50.0 · source§

fn clamp(self, min: Self, max: Self) -> Self
where Self: Sized,

Restrict a value to a certain interval. Read more
source§

impl PartialEq for Source

source§

fn eq(&self, other: &Source) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl PartialOrd for Source

source§

fn partial_cmp(&self, other: &Source) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
1.0.0 · source§

fn lt(&self, other: &Rhs) -> bool

Tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · source§

fn le(&self, other: &Rhs) -> bool

Tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0 · source§

fn gt(&self, other: &Rhs) -> bool

Tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 · source§

fn ge(&self, other: &Rhs) -> bool

Tests greater than or equal to (for self and other) and is used by the >= operator. Read more
source§

impl Eq for Source

source§

impl StructuralPartialEq for Source

Auto Trait Implementations§

§

impl Freeze for Source

§

impl RefUnwindSafe for Source

§

impl Send for Source

§

impl Sync for Source

§

impl Unpin for Source

§

impl UnwindSafe for Source

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> CloneToUninit for T
where T: Clone,

source§

unsafe fn clone_to_uninit(&self, dst: *mut T)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for T
where T: Clone,

source§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

source§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

source§

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

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.