pub enum BusinessGreetingMessage {
BusinessGreetingMessage(BusinessGreetingMessage),
}Expand description
Variants§
BusinessGreetingMessage(BusinessGreetingMessage)
Trait Implementations§
Source§impl Clone for BusinessGreetingMessage
impl Clone for BusinessGreetingMessage
Source§fn clone(&self) -> BusinessGreetingMessage
fn clone(&self) -> BusinessGreetingMessage
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 BusinessGreetingMessage
impl Debug for BusinessGreetingMessage
Source§impl Deserializable for BusinessGreetingMessage
impl Deserializable for BusinessGreetingMessage
Source§fn deserialize(buf: Buffer<'_, '_>) -> Result<Self>
fn deserialize(buf: Buffer<'_, '_>) -> Result<Self>
Read
Self from buf, advancing its position.Source§fn from_bytes(bytes: &[u8]) -> Result<Self>
fn from_bytes(bytes: &[u8]) -> Result<Self>
Convenience: deserialize from a byte slice.
Source§impl From<BusinessGreetingMessage> for BusinessGreetingMessage
impl From<BusinessGreetingMessage> for BusinessGreetingMessage
Source§fn from(x: BusinessGreetingMessage) -> Self
fn from(x: BusinessGreetingMessage) -> Self
Converts to this type from the input type.
Source§impl PartialEq for BusinessGreetingMessage
impl PartialEq for BusinessGreetingMessage
Source§impl TryFrom<BusinessGreetingMessage> for BusinessGreetingMessage
impl TryFrom<BusinessGreetingMessage> for BusinessGreetingMessage
Source§type Error = BusinessGreetingMessage
type Error = BusinessGreetingMessage
The type returned in the event of a conversion error.
impl StructuralPartialEq for BusinessGreetingMessage
Auto Trait Implementations§
impl Freeze for BusinessGreetingMessage
impl RefUnwindSafe for BusinessGreetingMessage
impl Send for BusinessGreetingMessage
impl Sync for BusinessGreetingMessage
impl Unpin for BusinessGreetingMessage
impl UnsafeUnpin for BusinessGreetingMessage
impl UnwindSafe for BusinessGreetingMessage
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