pub enum Manufacturer {
Unknown,
Ledger,
}
Variants§
Trait Implementations§
Source§impl AsRef<str> for Manufacturer
impl AsRef<str> for Manufacturer
Source§impl Clone for Manufacturer
impl Clone for Manufacturer
Source§fn clone(&self) -> Manufacturer
fn clone(&self) -> Manufacturer
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 Manufacturer
impl Debug for Manufacturer
Source§impl Default for Manufacturer
impl Default for Manufacturer
Source§impl Display for Manufacturer
impl Display for Manufacturer
Source§impl FromStr for Manufacturer
impl FromStr for Manufacturer
Source§impl PartialEq for Manufacturer
impl PartialEq for Manufacturer
Source§impl TryFrom<&str> for Manufacturer
impl TryFrom<&str> for Manufacturer
impl Copy for Manufacturer
impl Eq for Manufacturer
impl StructuralPartialEq for Manufacturer
Auto Trait Implementations§
impl Freeze for Manufacturer
impl RefUnwindSafe for Manufacturer
impl Send for Manufacturer
impl Sync for Manufacturer
impl Unpin for Manufacturer
impl UnwindSafe for Manufacturer
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more