pub enum Soundness {
Sound,
Unsound,
}
Expand description
The soundness of obtaining the local UTC offset.
Variants§
Sound
Obtaining the local UTC offset is required to be sound. Undefined behavior will never occur. This is the default.
Unsound
Obtaining the local UTC offset is allowed to invoke undefined behavior. Setting this
value is strongly discouraged. To do so, you must comply with the safety requirements
of time::local_offset::set_soundness
.
Trait Implementations§
impl Copy for Soundness
impl StructuralPartialEq for Soundness
Auto Trait Implementations§
impl Freeze for Soundness
impl RefUnwindSafe for Soundness
impl Send for Soundness
impl Sync for Soundness
impl Unpin for Soundness
impl UnwindSafe for Soundness
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)