pub struct SessionErrorAction {
pub turn_id: String,
pub error: ErrorInfo,
}Expand description
Error during turn processing.
Fields§
§turn_id: StringTurn identifier
error: ErrorInfoError details
Trait Implementations§
Source§impl Clone for SessionErrorAction
impl Clone for SessionErrorAction
Source§fn clone(&self) -> SessionErrorAction
fn clone(&self) -> SessionErrorAction
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 SessionErrorAction
impl Debug for SessionErrorAction
Source§impl<'de> Deserialize<'de> for SessionErrorAction
impl<'de> Deserialize<'de> for SessionErrorAction
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
Source§impl PartialEq for SessionErrorAction
impl PartialEq for SessionErrorAction
Source§fn eq(&self, other: &SessionErrorAction) -> bool
fn eq(&self, other: &SessionErrorAction) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for SessionErrorAction
impl Serialize for SessionErrorAction
impl StructuralPartialEq for SessionErrorAction
Auto Trait Implementations§
impl Freeze for SessionErrorAction
impl RefUnwindSafe for SessionErrorAction
impl Send for SessionErrorAction
impl Sync for SessionErrorAction
impl Unpin for SessionErrorAction
impl UnsafeUnpin for SessionErrorAction
impl UnwindSafe for SessionErrorAction
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