pub struct VTimezone {
pub tzid: String,
pub raw_subs: Vec<RawComponent>,
}Expand description
VTIMEZONE component (RFC 5545 §3.6.5).
Self-built: STANDARD / DAYLIGHT children captured raw; conversion to a
usable offset function lives in vtimezone.
Fields§
§tzid: StringTZID property — the timezone identifier this block defines.
raw_subs: Vec<RawComponent>Raw STANDARD / DAYLIGHT subcomponents. Resolution to chrono-tz or custom offset happens lazily at evaluation time.
Trait Implementations§
impl Eq for VTimezone
impl StructuralPartialEq for VTimezone
Auto Trait Implementations§
impl Freeze for VTimezone
impl RefUnwindSafe for VTimezone
impl Send for VTimezone
impl Sync for VTimezone
impl Unpin for VTimezone
impl UnsafeUnpin for VTimezone
impl UnwindSafe for VTimezone
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more