FwCode

Enum FwCode 

Source
#[repr(u8)]
pub enum FwCode {
Show 20 variants NOT_IN_UPDATE_MODE = 128, ALREADY_IN_UPDATE_MODE = 129, DATA_OUT_OF_RANGE = 130, INVALID_TRANSFER_LENGTH = 131, INVALID_STATE_FOR_COMMAND = 132, INCOMPLETE_UPDATE = 133, BUSY_IN_BACKGROUND = 134, CANCEL_PENDING = 135, COMMAND_NOT_EXPECTED = 136, RETRY_REQUEST_FW_DATA = 137, UNABLE_TO_INITIATE_UPDATE = 138, ACTIVATION_NOT_REQUIRED = 139, SELF_CONTAINED_ACTIVATION_NOT_PERMITTED = 140, NO_DEVICE_METADATA = 141, RETRY_REQUEST_UPDATE = 142, NO_PACKAGE_DATA = 143, INVALID_TRANSFER_HANDLE = 144, INVALID_TRANSFER_OPERATION = 145, ACTIVATE_PENDING_IMAGE_NOT_PERMITTED = 146, PACKAGE_DATA_ERROR = 147,
}
Expand description

PLDM firmware response codes

Variants§

§

NOT_IN_UPDATE_MODE = 128

§

ALREADY_IN_UPDATE_MODE = 129

§

DATA_OUT_OF_RANGE = 130

§

INVALID_TRANSFER_LENGTH = 131

§

INVALID_STATE_FOR_COMMAND = 132

§

INCOMPLETE_UPDATE = 133

§

BUSY_IN_BACKGROUND = 134

§

CANCEL_PENDING = 135

§

COMMAND_NOT_EXPECTED = 136

§

RETRY_REQUEST_FW_DATA = 137

§

UNABLE_TO_INITIATE_UPDATE = 138

§

ACTIVATION_NOT_REQUIRED = 139

§

SELF_CONTAINED_ACTIVATION_NOT_PERMITTED = 140

§

NO_DEVICE_METADATA = 141

§

RETRY_REQUEST_UPDATE = 142

§

NO_PACKAGE_DATA = 143

§

INVALID_TRANSFER_HANDLE = 144

§

INVALID_TRANSFER_OPERATION = 145

§

ACTIVATE_PENDING_IMAGE_NOT_PERMITTED = 146

§

PACKAGE_DATA_ERROR = 147

Trait Implementations§

Source§

impl Debug for FwCode

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl PartialEq for FwCode

Source§

fn eq(&self, other: &FwCode) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl StructuralPartialEq for FwCode

Auto Trait Implementations§

§

impl Freeze for FwCode

§

impl RefUnwindSafe for FwCode

§

impl Send for FwCode

§

impl Sync for FwCode

§

impl Unpin for FwCode

§

impl UnwindSafe for FwCode

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.