pub struct CallStatePending {
pub is_created: bool,
pub is_received: bool,
}
Expand description
The call is pending, waiting to be accepted by a user
Fields§
§is_created: bool
True, if the call has already been created by the server
is_received: bool
True, if the call has already been received by the other party
Trait Implementations§
Source§impl Clone for CallStatePending
impl Clone for CallStatePending
Source§fn clone(&self) -> CallStatePending
fn clone(&self) -> CallStatePending
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 CallStatePending
impl Debug for CallStatePending
Source§impl<'de> Deserialize<'de> for CallStatePending
impl<'de> Deserialize<'de> for CallStatePending
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for CallStatePending
impl RefUnwindSafe for CallStatePending
impl Send for CallStatePending
impl Sync for CallStatePending
impl Unpin for CallStatePending
impl UnwindSafe for CallStatePending
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