pub enum PosNeg {
Pos,
Neg,
}
Expand description
Represents a plus sign or minus sign for positive and negative timezone offsets.
Variants§
Pos
A plus sign representing a positive timezone offset.
Neg
A minus sign representing a negaive timezone offset.
Trait Implementations§
impl Copy for PosNeg
impl Eq for PosNeg
impl StructuralPartialEq for PosNeg
Auto Trait Implementations§
impl Freeze for PosNeg
impl RefUnwindSafe for PosNeg
impl Send for PosNeg
impl Sync for PosNeg
impl Unpin for PosNeg
impl UnwindSafe for PosNeg
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