#[repr(u32)]pub enum MigrateInfoType {
MigrateCapable = 0,
NotMigrateCapable = 1,
MigrationNotRequired = 2,
}
Expand description
5.1.8 MIGRATE_INFO_UP_CPU return value
Variants§
Trait Implementations§
Source§impl Clone for MigrateInfoType
impl Clone for MigrateInfoType
Source§fn clone(&self) -> MigrateInfoType
fn clone(&self) -> MigrateInfoType
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 MigrateInfoType
impl Debug for MigrateInfoType
Source§impl From<MigrateInfoType> for u32
impl From<MigrateInfoType> for u32
Source§fn from(enum_value: MigrateInfoType) -> Self
fn from(enum_value: MigrateInfoType) -> Self
Converts to this type from the input type.
Source§impl PartialEq for MigrateInfoType
impl PartialEq for MigrateInfoType
Source§impl TryFrom<u32> for MigrateInfoType
impl TryFrom<u32> for MigrateInfoType
Source§type Error = TryFromPrimitiveError<MigrateInfoType>
type Error = TryFromPrimitiveError<MigrateInfoType>
The type returned in the event of a conversion error.
Source§impl TryFromPrimitive for MigrateInfoType
impl TryFromPrimitive for MigrateInfoType
const NAME: &'static str = "MigrateInfoType"
type Primitive = u32
type Error = TryFromPrimitiveError<MigrateInfoType>
fn try_from_primitive( number: Self::Primitive, ) -> Result<Self, TryFromPrimitiveError<Self>>
impl Copy for MigrateInfoType
impl Eq for MigrateInfoType
impl StructuralPartialEq for MigrateInfoType
Auto Trait Implementations§
impl Freeze for MigrateInfoType
impl RefUnwindSafe for MigrateInfoType
impl Send for MigrateInfoType
impl Sync for MigrateInfoType
impl Unpin for MigrateInfoType
impl UnwindSafe for MigrateInfoType
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