#[repr(u32)]pub enum UTimeZoneTransitionType {
UCAL_TZ_TRANSITION_NEXT = 0,
UCAL_TZ_TRANSITION_NEXT_INCLUSIVE = 1,
UCAL_TZ_TRANSITION_PREVIOUS = 2,
UCAL_TZ_TRANSITION_PREVIOUS_INCLUSIVE = 3,
}
Variants§
UCAL_TZ_TRANSITION_NEXT = 0
UCAL_TZ_TRANSITION_NEXT_INCLUSIVE = 1
UCAL_TZ_TRANSITION_PREVIOUS = 2
UCAL_TZ_TRANSITION_PREVIOUS_INCLUSIVE = 3
Trait Implementations§
source§impl Clone for UTimeZoneTransitionType
impl Clone for UTimeZoneTransitionType
source§fn clone(&self) -> UTimeZoneTransitionType
fn clone(&self) -> UTimeZoneTransitionType
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for UTimeZoneTransitionType
impl Debug for UTimeZoneTransitionType
source§impl Hash for UTimeZoneTransitionType
impl Hash for UTimeZoneTransitionType
source§impl PartialEq for UTimeZoneTransitionType
impl PartialEq for UTimeZoneTransitionType
source§fn eq(&self, other: &UTimeZoneTransitionType) -> bool
fn eq(&self, other: &UTimeZoneTransitionType) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl PartialOrd for UTimeZoneTransitionType
impl PartialOrd for UTimeZoneTransitionType
source§fn partial_cmp(&self, other: &UTimeZoneTransitionType) -> Option<Ordering>
fn partial_cmp(&self, other: &UTimeZoneTransitionType) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moreimpl Copy for UTimeZoneTransitionType
impl Eq for UTimeZoneTransitionType
impl StructuralPartialEq for UTimeZoneTransitionType
Auto Trait Implementations§
impl RefUnwindSafe for UTimeZoneTransitionType
impl Send for UTimeZoneTransitionType
impl Sync for UTimeZoneTransitionType
impl Unpin for UTimeZoneTransitionType
impl UnwindSafe for UTimeZoneTransitionType
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