pub enum TextTransformValue {
Initial,
Inherit,
Revert,
RevertLayer,
Unset,
Capitalize,
Lowercase,
Uppercase,
FullWidth,
FullSizeKana,
None,
}Variants§
Initial
Inherit
Revert
RevertLayer
Unset
Capitalize
Lowercase
Uppercase
FullWidth
FullSizeKana
None
Implementations§
Source§impl TextTransformValue
impl TextTransformValue
Sourcepub const fn is_initial(&self) -> bool
pub const fn is_initial(&self) -> bool
Returns true if the enum is TextTransformValue::Initial otherwise false
Sourcepub const fn is_inherit(&self) -> bool
pub const fn is_inherit(&self) -> bool
Returns true if the enum is TextTransformValue::Inherit otherwise false
Sourcepub const fn is_revert(&self) -> bool
pub const fn is_revert(&self) -> bool
Returns true if the enum is TextTransformValue::Revert otherwise false
Sourcepub const fn is_revert_layer(&self) -> bool
pub const fn is_revert_layer(&self) -> bool
Returns true if the enum is TextTransformValue::RevertLayer otherwise false
Sourcepub const fn is_unset(&self) -> bool
pub const fn is_unset(&self) -> bool
Returns true if the enum is TextTransformValue::Unset otherwise false
Sourcepub const fn is_capitalize(&self) -> bool
pub const fn is_capitalize(&self) -> bool
Returns true if the enum is TextTransformValue::Capitalize otherwise false
Sourcepub const fn is_lowercase(&self) -> bool
pub const fn is_lowercase(&self) -> bool
Returns true if the enum is TextTransformValue::Lowercase otherwise false
Sourcepub const fn is_uppercase(&self) -> bool
pub const fn is_uppercase(&self) -> bool
Returns true if the enum is TextTransformValue::Uppercase otherwise false
Sourcepub const fn is_full_width(&self) -> bool
pub const fn is_full_width(&self) -> bool
Returns true if the enum is TextTransformValue::FullWidth otherwise false
Sourcepub const fn is_full_size_kana(&self) -> bool
pub const fn is_full_size_kana(&self) -> bool
Returns true if the enum is TextTransformValue::FullSizeKana otherwise false
Trait Implementations§
Source§impl Clone for TextTransformValue
impl Clone for TextTransformValue
Source§fn clone(&self) -> TextTransformValue
fn clone(&self) -> TextTransformValue
Returns a duplicate 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 TextTransformValue
impl Debug for TextTransformValue
Source§impl Display for TextTransformValue
impl Display for TextTransformValue
Source§impl PartialEq for TextTransformValue
impl PartialEq for TextTransformValue
impl StructuralPartialEq for TextTransformValue
impl UnitDataType<TextTransform<TextTransformValue>> for TextTransformValue
Auto Trait Implementations§
impl Freeze for TextTransformValue
impl RefUnwindSafe for TextTransformValue
impl Send for TextTransformValue
impl Sync for TextTransformValue
impl Unpin for TextTransformValue
impl UnwindSafe for TextTransformValue
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