#[repr(u8)]pub enum AlphaCapsLodash {
Show 27 variants
A = 65,
B = 66,
C = 67,
D = 68,
E = 69,
F = 70,
G = 71,
H = 72,
I = 73,
J = 74,
K = 75,
L = 76,
M = 77,
N = 78,
O = 79,
P = 80,
Q = 81,
R = 82,
S = 83,
T = 84,
U = 85,
V = 86,
W = 87,
X = 88,
Y = 89,
Z = 90,
Lodash = 95,
}Variants§
A = 65
B = 66
C = 67
D = 68
E = 69
F = 70
G = 71
H = 72
I = 73
J = 74
K = 75
L = 76
M = 77
N = 78
O = 79
P = 80
Q = 81
R = 82
S = 83
T = 84
U = 85
V = 86
W = 87
X = 88
Y = 89
Z = 90
Lodash = 95
Trait Implementations§
Source§impl Clone for AlphaCapsLodash
impl Clone for AlphaCapsLodash
Source§fn clone(&self) -> AlphaCapsLodash
fn clone(&self) -> AlphaCapsLodash
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 AlphaCapsLodash
impl Debug for AlphaCapsLodash
Source§impl Display for AlphaCapsLodash
impl Display for AlphaCapsLodash
Source§impl From<AlphaCapsLodash> for u8
impl From<AlphaCapsLodash> for u8
Source§fn from(value: AlphaCapsLodash) -> u8
fn from(value: AlphaCapsLodash) -> u8
Converts to this type from the input type.
Source§impl Hash for AlphaCapsLodash
impl Hash for AlphaCapsLodash
Source§impl Ord for AlphaCapsLodash
impl Ord for AlphaCapsLodash
Source§fn cmp(&self, other: &AlphaCapsLodash) -> Ordering
fn cmp(&self, other: &AlphaCapsLodash) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for AlphaCapsLodash
impl PartialEq for AlphaCapsLodash
Source§impl PartialOrd for AlphaCapsLodash
impl PartialOrd for AlphaCapsLodash
Source§impl StrictDecode for AlphaCapsLodash
impl StrictDecode for AlphaCapsLodash
fn strict_decode(reader: &mut impl TypedRead) -> Result<Self, DecodeError>
fn strict_read(reader: impl ReadRaw) -> Result<Self, DecodeError>
Source§impl StrictDumb for AlphaCapsLodash
impl StrictDumb for AlphaCapsLodash
fn strict_dumb() -> Self
Source§impl StrictEncode for AlphaCapsLodash
impl StrictEncode for AlphaCapsLodash
fn strict_encode<W: TypedWrite>(&self, writer: W) -> Result<W>
fn strict_write(&self, writer: impl WriteRaw) -> Result<()>
Source§impl StrictEnum for AlphaCapsLodash
impl StrictEnum for AlphaCapsLodash
fn from_variant_name( name: &VariantName, ) -> Result<Self, VariantError<&VariantName>>
fn strict_type_info() -> TypeInfo<Self>
Source§impl StrictSum for AlphaCapsLodash
impl StrictSum for AlphaCapsLodash
const ALL_VARIANTS: &'static [(u8, &'static str)]
fn variant_name(&self) -> &'static str
fn strict_check_variants()
fn variant_name_by_tag(tag: u8) -> Option<VariantName>
fn variant_ord(&self) -> u8
Source§impl StrictType for AlphaCapsLodash
impl StrictType for AlphaCapsLodash
const STRICT_LIB_NAME: &'static str = LIB_NAME_STD
fn strict_name() -> Option<TypeName>
Source§impl TryFrom<u8> for AlphaCapsLodash
impl TryFrom<u8> for AlphaCapsLodash
impl Copy for AlphaCapsLodash
impl Eq for AlphaCapsLodash
impl RestrictedCharSet for AlphaCapsLodash
impl StructuralPartialEq for AlphaCapsLodash
Auto Trait Implementations§
impl Freeze for AlphaCapsLodash
impl RefUnwindSafe for AlphaCapsLodash
impl Send for AlphaCapsLodash
impl Sync for AlphaCapsLodash
impl Unpin for AlphaCapsLodash
impl UnwindSafe for AlphaCapsLodash
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