Docs.rs
  • from-regex-0.1.0
    • from-regex 0.1.0
    • Docs.rs crate page
    • MIT
    • Links
    • Repository
    • crates.io
    • Source
    • Owners
    • ecclarke42
    • Dependencies
      • from-regex-macros ^0.1.0 normal
      • lazy_static ^1 normal
      • regex ^1 normal
    • Versions
    • 0% of the crate is documented
  • Go to latest version
  • Platform
    • i686-pc-windows-msvc
    • i686-unknown-linux-gnu
    • x86_64-apple-darwin
    • x86_64-pc-windows-msvc
    • x86_64-unknown-linux-gnu
  • Feature flags
  • docs.rs
    • About docs.rs
    • Badges
    • Builds
    • Metadata
    • Shorthand URLs
    • Download
    • Rustdoc JSON
    • Build queue
    • Privacy policy
  • Rust
    • Rust website
    • The Book
    • Standard Library API Reference
    • Rust by Example
    • The Cargo Guide
    • Clippy Documentation
☰
logo

Crate from_regex

Version 0.1.0

See all from_regex's items

  • Macros
  • Structs
  • Enums
  • Traits

Macros

  • lazy_static

Structs

  • Captures
  • Regex

Enums

  • FromRegexError

Traits

  • FromRegex
  • FromStr
Change settings

Crate from_regex[−][src]

Re-exports

pub use regex;

Macros

lazy_static

Structs

Captures

Captures represents a group of captured strings for a single match.

Regex

A compiled regular expression for matching Unicode strings.

Enums

FromRegexError

Traits

FromRegex
FromStr

Parse a value from a string

Derive Macros

FromRegex

Derive FromRegex

FromStr

Generates the same code as FromRegex, but also adds a std::str::FromStr implementation (with () error type)

Results for CaptureLocations

from_regex::Regex::capture_locations
Returns an empty set of capture locations that can be …
from_regex::Regex::captures_read
This is like captures, but uses CaptureLocations instead …
from_regex::Regex::captures_read_at
Returns the same as captures, but starts the search at …
from_regex::Regex::capture_locations
Returns an empty set of capture locations that can be …