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