#[repr(u32)]pub enum UDateFormatBooleanAttribute {
UDAT_PARSE_ALLOW_WHITESPACE = 0,
UDAT_PARSE_ALLOW_NUMERIC = 1,
UDAT_PARSE_PARTIAL_LITERAL_MATCH = 2,
UDAT_PARSE_MULTIPLE_PATTERNS_FOR_MATCH = 3,
UDAT_BOOLEAN_ATTRIBUTE_COUNT = 4,
}
Variants§
UDAT_PARSE_ALLOW_WHITESPACE = 0
UDAT_PARSE_ALLOW_NUMERIC = 1
UDAT_PARSE_PARTIAL_LITERAL_MATCH = 2
UDAT_PARSE_MULTIPLE_PATTERNS_FOR_MATCH = 3
UDAT_BOOLEAN_ATTRIBUTE_COUNT = 4
Trait Implementations§
source§impl Clone for UDateFormatBooleanAttribute
impl Clone for UDateFormatBooleanAttribute
source§fn clone(&self) -> UDateFormatBooleanAttribute
fn clone(&self) -> UDateFormatBooleanAttribute
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 UDateFormatBooleanAttribute
impl Debug for UDateFormatBooleanAttribute
source§impl Hash for UDateFormatBooleanAttribute
impl Hash for UDateFormatBooleanAttribute
source§impl PartialEq for UDateFormatBooleanAttribute
impl PartialEq for UDateFormatBooleanAttribute
source§fn eq(&self, other: &UDateFormatBooleanAttribute) -> bool
fn eq(&self, other: &UDateFormatBooleanAttribute) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl PartialOrd for UDateFormatBooleanAttribute
impl PartialOrd for UDateFormatBooleanAttribute
source§fn partial_cmp(&self, other: &UDateFormatBooleanAttribute) -> Option<Ordering>
fn partial_cmp(&self, other: &UDateFormatBooleanAttribute) -> 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 UDateFormatBooleanAttribute
impl Eq for UDateFormatBooleanAttribute
impl StructuralPartialEq for UDateFormatBooleanAttribute
Auto Trait Implementations§
impl RefUnwindSafe for UDateFormatBooleanAttribute
impl Send for UDateFormatBooleanAttribute
impl Sync for UDateFormatBooleanAttribute
impl Unpin for UDateFormatBooleanAttribute
impl UnwindSafe for UDateFormatBooleanAttribute
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