#[repr(i8)]
pub enum Tryte {
Show 27 variants
N,
O,
P,
Q,
R,
S,
T,
U,
V,
W,
X,
Y,
Z,
Nine,
A,
B,
C,
D,
E,
F,
G,
H,
I,
J,
K,
L,
M,
}Expand description
A ternary tryte. Equivalent to 3 trits.
Variants
N
O
P
Q
R
S
T
U
V
W
X
Y
Z
Nine
A
B
C
D
E
F
G
H
I
J
K
L
M
Implementations
Trait Implementations
sourceimpl FromIterator<Tryte> for TryteBuf
impl FromIterator<Tryte> for TryteBuf
sourcefn from_iter<I: IntoIterator<Item = Tryte>>(iter: I) -> Self
fn from_iter<I: IntoIterator<Item = Tryte>>(iter: I) -> Self
Creates a value from an iterator. Read more
impl Copy for Tryte
impl Eq for Tryte
impl StructuralEq for Tryte
impl StructuralPartialEq for Tryte
Auto Trait Implementations
impl RefUnwindSafe for Tryte
impl Send for Tryte
impl Sync for Tryte
impl Unpin for Tryte
impl UnwindSafe for Tryte
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more