pub enum BatReplaceabilityEnum {
Unspecified,
NotReplaceable,
UserReplaceable,
FactoryReplaceable,
Unknown(u8),
}Expand description
BatReplaceabilityEnum (enum8).
Variants§
Unspecified
Unspecified = 0.
NotReplaceable
NotReplaceable = 1.
UserReplaceable
UserReplaceable = 2.
FactoryReplaceable
FactoryReplaceable = 3.
Unknown(u8)
A value not known to this codegen revision.
Implementations§
Trait Implementations§
Source§impl Clone for BatReplaceabilityEnum
impl Clone for BatReplaceabilityEnum
Source§fn clone(&self) -> BatReplaceabilityEnum
fn clone(&self) -> BatReplaceabilityEnum
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for BatReplaceabilityEnum
Source§impl Debug for BatReplaceabilityEnum
impl Debug for BatReplaceabilityEnum
impl Eq for BatReplaceabilityEnum
Source§impl PartialEq for BatReplaceabilityEnum
impl PartialEq for BatReplaceabilityEnum
impl StructuralPartialEq for BatReplaceabilityEnum
Auto Trait Implementations§
impl Freeze for BatReplaceabilityEnum
impl RefUnwindSafe for BatReplaceabilityEnum
impl Send for BatReplaceabilityEnum
impl Sync for BatReplaceabilityEnum
impl Unpin for BatReplaceabilityEnum
impl UnsafeUnpin for BatReplaceabilityEnum
impl UnwindSafe for BatReplaceabilityEnum
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