#[repr(u8)]pub enum NodeOperationalCertStatus {
Ok = 0,
Invalidpublickey = 1,
Invalidnodeopid = 2,
Invalidnoc = 3,
Missingcsr = 4,
Tablefull = 5,
Invalidadminsubject = 6,
Reservedforfutureuse = 7,
Reservedforfutureuse8 = 8,
Fabricconflict = 9,
Labelconflict = 10,
Invalidfabricindex = 11,
}Variants§
Ok = 0
OK, no error
Invalidpublickey = 1
Public Key in the NOC does not match the public key in the NOCSR
Invalidnodeopid = 2
The Node Operational ID in the NOC is not formatted correctly.
Invalidnoc = 3
Any other validation error in NOC chain
Missingcsr = 4
No record of prior CSR for which this NOC could match
Tablefull = 5
NOCs table full, cannot add another one
Invalidadminsubject = 6
Invalid CaseAdminSubject field for an AddNOC command.
Reservedforfutureuse = 7
Reserved for future use
Reservedforfutureuse8 = 8
Reserved for future use
Fabricconflict = 9
Trying to AddNOC instead of UpdateNOC against an existing Fabric.
Labelconflict = 10
Label already exists on another Fabric.
Invalidfabricindex = 11
FabricIndex argument is invalid.
Implementations§
Trait Implementations§
Source§impl Clone for NodeOperationalCertStatus
impl Clone for NodeOperationalCertStatus
Source§fn clone(&self) -> NodeOperationalCertStatus
fn clone(&self) -> NodeOperationalCertStatus
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 NodeOperationalCertStatus
impl Debug for NodeOperationalCertStatus
Source§impl<'de> Deserialize<'de> for NodeOperationalCertStatus
impl<'de> Deserialize<'de> for NodeOperationalCertStatus
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl From<NodeOperationalCertStatus> for u8
impl From<NodeOperationalCertStatus> for u8
Source§fn from(val: NodeOperationalCertStatus) -> Self
fn from(val: NodeOperationalCertStatus) -> Self
Converts to this type from the input type.
impl Copy for NodeOperationalCertStatus
impl Eq for NodeOperationalCertStatus
impl StructuralPartialEq for NodeOperationalCertStatus
Auto Trait Implementations§
impl Freeze for NodeOperationalCertStatus
impl RefUnwindSafe for NodeOperationalCertStatus
impl Send for NodeOperationalCertStatus
impl Sync for NodeOperationalCertStatus
impl Unpin for NodeOperationalCertStatus
impl UnwindSafe for NodeOperationalCertStatus
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