From 64106c4d3d4ddba8c7bc2af75376e6d3d3d75601 Mon Sep 17 00:00:00 2001 From: Date: Mon, 29 Jun 2015 20:16:15 +0000 Subject: Update documentation --- regex_syntax/enum.Repeater.html | 127 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 127 insertions(+) create mode 100644 regex_syntax/enum.Repeater.html (limited to 'regex_syntax/enum.Repeater.html') diff --git a/regex_syntax/enum.Repeater.html b/regex_syntax/enum.Repeater.html new file mode 100644 index 0000000..2ed4b45 --- /dev/null +++ b/regex_syntax/enum.Repeater.html @@ -0,0 +1,127 @@ + + + + + + + + + + regex_syntax::Repeater - Rust + + + + + + + + + + + + + + + +
+

Enum regex_syntax::Repeater + + [] + + [src]

+
pub enum Repeater {
+    ZeroOrOne,
+    ZeroOrMore,
+    OneOrMore,
+    Range {
+        min: u32,
+        max: Option<u32>,
+    },
+}

The type of a repeat operator expression.

+

Variants

+
ZeroOrOne

Match zero or one (?).

+
ZeroOrMore

Match zero or more (*).

+
OneOrMore

Match one or more (+).

+
Range

Match for at least min and at most max ({m,n}).

+ +

When max is None, there is no upper bound on the number of matches.

+

Fields

+ +
min

Lower bound on the number of matches.

+
max

Optional upper bound on the number of matches.

+

Trait Implementations

impl Display for Repeater

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

+

Derived Implementations

impl Eq for Repeater

impl PartialEq for Repeater

fn eq(&self, __arg_0: &Repeater) -> bool

+

fn ne(&self, __arg_0: &Repeater) -> bool

+

impl Debug for Repeater

fn fmt(&self, __arg_0: &mut Formatter) -> Result

+

impl Copy for Repeater

impl Clone for Repeater

fn clone(&self) -> Repeater

+

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

+
+ + + + + + + + + + + + + + + \ No newline at end of file -- cgit v1.2.3