diff options
author | Fredrik Meringdal <fmeringdal@hotmail.com> | 2020-11-03 23:22:51 +0100 |
---|---|---|
committer | Fredrik Meringdal <fmeringdal@hotmail.com> | 2020-11-03 23:22:51 +0100 |
commit | 00ba4141d5bb41f0ffc014c76bfdafcec7c02b6b (patch) | |
tree | 682f9f09ff13849a455d01ea7949a5c4a581663d /src/rrule.rs | |
parent | 66317f2566897556488af09e9ca73a06b9439b0f (diff) | |
download | rust_rrule-00ba4141d5bb41f0ffc014c76bfdafcec7c02b6b.zip |
using lazy_static instead of once_cell
Diffstat (limited to 'src/rrule.rs')
-rw-r--r-- | src/rrule.rs | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/rrule.rs b/src/rrule.rs index 4ffcde9..c2a080e 100644 --- a/src/rrule.rs +++ b/src/rrule.rs @@ -11,7 +11,6 @@ pub struct RRule { pub options: ParsedOptions, } - impl RRule { pub fn new(options: ParsedOptions) -> Self { Self { options } |