pub enum PhoneCall {
PhoneCall(PhoneCall),
}Expand description
Variants§
Trait Implementations§
Source§impl Deserializable for PhoneCall
impl Deserializable for PhoneCall
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 Serializable for PhoneCall
impl Serializable for PhoneCall
impl StructuralPartialEq for PhoneCall
Auto Trait Implementations§
impl Freeze for PhoneCall
impl RefUnwindSafe for PhoneCall
impl Send for PhoneCall
impl Sync for PhoneCall
impl Unpin for PhoneCall
impl UnsafeUnpin for PhoneCall
impl UnwindSafe for PhoneCall
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