pub enum Registration {
Checking,
Ok,
Error,
}Expand description
Variants§
Trait Implementations§
Source§impl Clone for Registration
impl Clone for Registration
Source§fn clone(&self) -> Registration
fn clone(&self) -> Registration
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 Registration
impl Debug for Registration
Source§impl Display for Registration
impl Display for Registration
Source§impl PartialEq for Registration
impl PartialEq for Registration
Source§impl TryFrom<RawEngineMessage> for Registration
impl TryFrom<RawEngineMessage> for Registration
Source§type Error = MessageTryFromRawMessageError<EngineMessageParameterPointer>
type Error = MessageTryFromRawMessageError<EngineMessageParameterPointer>
The type returned in the event of a conversion error.
Source§fn try_from(
raw_message: RawEngineMessage,
) -> Result<Self, MessageTryFromRawMessageError<EngineMessageParameterPointer>>
fn try_from( raw_message: RawEngineMessage, ) -> Result<Self, MessageTryFromRawMessageError<EngineMessageParameterPointer>>
Performs the conversion.
impl Copy for Registration
impl Eq for Registration
impl StructuralPartialEq for Registration
Auto Trait Implementations§
impl Freeze for Registration
impl RefUnwindSafe for Registration
impl Send for Registration
impl Sync for Registration
impl Unpin for Registration
impl UnwindSafe for Registration
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