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