pub struct CallStateError {
pub error: Error,
}
Expand description
The call has ended with an error
Fields§
§error: Error
Error. An error with the code 4005000 will be returned if an outgoing call is missed because of an expired timeout
Trait Implementations§
Source§impl Clone for CallStateError
impl Clone for CallStateError
Source§fn clone(&self) -> CallStateError
fn clone(&self) -> CallStateError
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 CallStateError
impl Debug for CallStateError
Source§impl<'de> Deserialize<'de> for CallStateError
impl<'de> Deserialize<'de> for CallStateError
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 CallStateError
impl RefUnwindSafe for CallStateError
impl Send for CallStateError
impl Sync for CallStateError
impl Unpin for CallStateError
impl UnwindSafe for CallStateError
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