summaryrefslogtreecommitdiff
path: root/src/rrulestr.rs
diff options
context:
space:
mode:
authorFredrik Meringdal <fmeringdal@hotmail.com>2020-10-25 01:44:05 +0200
committerFredrik Meringdal <fmeringdal@hotmail.com>2020-10-25 01:44:05 +0200
commit13fe8f487ca310bba001d58b0e2d53969e9f852c (patch)
treeda1c76779f968bac3d8c0ab6ce5fd078604d1042 /src/rrulestr.rs
parent7c1d074fe07e84ee19b30b39dabe1ebbf16a077a (diff)
downloadrust_rrule-13fe8f487ca310bba001d58b0e2d53969e9f852c.zip
cargo.toml
Diffstat (limited to 'src/rrulestr.rs')
-rw-r--r--src/rrulestr.rs27
1 files changed, 1 insertions, 26 deletions
diff --git a/src/rrulestr.rs b/src/rrulestr.rs
index 996749d..98db39a 100644
--- a/src/rrulestr.rs
+++ b/src/rrulestr.rs
@@ -433,32 +433,7 @@ fn parse_rdate(rdateval: &str, params: Vec<String>) -> Vec<DateTime<Utc>> {
rdateval.split(",").map(|datestr| datestring_to_date(datestr)).collect()
}
-/// A type that produces instances of a given a RFC1241 string representation.
-///
-/// The first element is traditionally the path of the executable, but it can be
-/// set to arbitrary text, and may not even exist. This means this property should
-/// not be relied upon for security purposes.
-///
-/// On Unix systems shell usually expands unquoted arguments with glob patterns
-/// (such as `*` and `?`). On Windows this is not done, and such arguments are
-/// passed as-is.
-///
-/// # Panics
-///
-/// The returned iterator will panic during iteration if any argument to the
-/// process is not valid unicode. If this is not desired,
-/// use the [`args_os`] function instead.
-///
-/// # Examples
-///
-/// ```
-/// use std::env;
-///
-/// // Prints each argument on a separate line
-/// for argument in env::args() {
-/// println!("{}", argument);
-/// }
-/// ```
+
pub fn build_rule(s: &str) -> RRuleSet {
let ParsedInput {
mut rrule_vals,