pub enum Message {
Raw(Vec<u8>),
Empty(Empty),
MinBl0SecVerRequest(MinBl0SecVerRequest),
NextBl0SlotRequest(NextBl0SlotRequest),
OwnershipUnlockRequest(OwnershipUnlockRequest),
OwnershipActivateRequest(OwnershipActivateRequest),
MinBl0SecVerResponse(MinBl0SecVerResponse),
NextBl0SlotResponse(NextBl0SlotResponse),
OwnershipUnlockResponse(OwnershipUnlockResponse),
OwnershipActivateResponse(OwnershipActivateResponse),
}
Variants§
Raw(Vec<u8>)
Empty(Empty)
MinBl0SecVerRequest(MinBl0SecVerRequest)
NextBl0SlotRequest(NextBl0SlotRequest)
OwnershipUnlockRequest(OwnershipUnlockRequest)
OwnershipActivateRequest(OwnershipActivateRequest)
MinBl0SecVerResponse(MinBl0SecVerResponse)
NextBl0SlotResponse(NextBl0SlotResponse)
OwnershipUnlockResponse(OwnershipUnlockResponse)
OwnershipActivateResponse(OwnershipActivateResponse)
Trait Implementations§
Source§impl Annotate for &Message
impl Annotate for &Message
fn format(&self, variant: Option<&str>, field: &MemberId<'_>) -> Option<Format>
fn comment(&self, variant: Option<&str>, field: &MemberId<'_>) -> Option<String>
fn as_annotate(&self) -> Option<&dyn Annotate>
fn thunk_serialize( &self, serializer: &mut AnnotatedSerializer<'_>, ) -> Result<Document, Error>
Source§impl Annotate for Message
impl Annotate for Message
fn format(&self, variant: Option<&str>, field: &MemberId<'_>) -> Option<Format>
fn comment(&self, variant: Option<&str>, field: &MemberId<'_>) -> Option<String>
fn as_annotate(&self) -> Option<&dyn Annotate>
fn thunk_serialize( &self, serializer: &mut AnnotatedSerializer<'_>, ) -> Result<Document, Error>
Auto Trait Implementations§
impl Freeze for Message
impl RefUnwindSafe for Message
impl Send for Message
impl Sync for Message
impl Unpin for Message
impl UnwindSafe for Message
Blanket Implementations§
§impl<T> Annotate for T
impl<T> Annotate for T
default fn format( &self, _variant: Option<&str>, _field: &MemberId<'_>, ) -> Option<Format>
default fn comment( &self, _variant: Option<&str>, _field: &MemberId<'_>, ) -> Option<String>
default fn as_annotate(&self) -> Option<&dyn Annotate>
default fn thunk_serialize( &self, serializer: &mut AnnotatedSerializer<'_>, ) -> Result<Document, Error>
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