pub enum EphemeralMessage {
EphemeralMessage(EphemeralMessage),
}Expand description
Variants§
EphemeralMessage(EphemeralMessage)
Trait Implementations§
Source§impl Clone for EphemeralMessage
impl Clone for EphemeralMessage
Source§fn clone(&self) -> EphemeralMessage
fn clone(&self) -> EphemeralMessage
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 EphemeralMessage
impl Debug for EphemeralMessage
Source§impl Deserializable for EphemeralMessage
impl Deserializable for EphemeralMessage
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<EphemeralMessage> for EphemeralMessage
impl From<EphemeralMessage> for EphemeralMessage
Source§fn from(x: EphemeralMessage) -> Self
fn from(x: EphemeralMessage) -> Self
Converts to this type from the input type.
Source§impl PartialEq for EphemeralMessage
impl PartialEq for EphemeralMessage
Source§impl Serializable for EphemeralMessage
impl Serializable for EphemeralMessage
impl StructuralPartialEq for EphemeralMessage
Source§impl TryFrom<EphemeralMessage> for EphemeralMessage
impl TryFrom<EphemeralMessage> for EphemeralMessage
Source§type Error = EphemeralMessage
type Error = EphemeralMessage
The type returned in the event of a conversion error.
Auto Trait Implementations§
impl Freeze for EphemeralMessage
impl RefUnwindSafe for EphemeralMessage
impl Send for EphemeralMessage
impl Sync for EphemeralMessage
impl Unpin for EphemeralMessage
impl UnsafeUnpin for EphemeralMessage
impl UnwindSafe for EphemeralMessage
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