diff options
Diffstat (limited to 'src/rruleset.rs')
-rw-r--r-- | src/rruleset.rs | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/src/rruleset.rs b/src/rruleset.rs index c6a4356..63e3145 100644 --- a/src/rruleset.rs +++ b/src/rruleset.rs @@ -6,32 +6,6 @@ use chrono::prelude::*; use chrono_tz::{Tz, UTC}; use std::collections::HashMap; -/// 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); -/// } -/// ``` #[derive(Debug)] pub struct RRuleSet { rrule: Vec<RRule>, |