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