pub enum BloatArg {
Slim,
Fat,
}Expand description
Reference zic’s -b {slim|fat} bloat value (T10.2). This is the emission policy knob —
whether otherwise-redundant transitions are kept (fat) or dropped (slim) — and is a thin
alias onto EmitStyleArg. It is not the TZif version (content-driven) and not the
-R redundant-tail range. zic’s own default is slim; zic-rs keeps a behaviour-matched
fat-style default and only changes emission when asked.
Variants§
Trait Implementations§
impl Copy for BloatArg
impl Eq for BloatArg
Source§impl From<BloatArg> for EmitStyleArg
impl From<BloatArg> for EmitStyleArg
impl StructuralPartialEq for BloatArg
Auto Trait Implementations§
impl Freeze for BloatArg
impl RefUnwindSafe for BloatArg
impl Send for BloatArg
impl Sync for BloatArg
impl Unpin for BloatArg
impl UnsafeUnpin for BloatArg
impl UnwindSafe for BloatArg
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