pub struct SendCallDebugInformation {
pub call_id: i32,
pub debug_information: String,
}
Expand description
Sends debug information for a call
Fields§
§call_id: i32
Call identifier
debug_information: String
Debug information in application-specific format
Trait Implementations§
Source§impl Clone for SendCallDebugInformation
impl Clone for SendCallDebugInformation
Source§fn clone(&self) -> SendCallDebugInformation
fn clone(&self) -> SendCallDebugInformation
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 SendCallDebugInformation
impl Debug for SendCallDebugInformation
Source§impl<'de> Deserialize<'de> for SendCallDebugInformation
impl<'de> Deserialize<'de> for SendCallDebugInformation
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 Method for SendCallDebugInformation
impl Method for SendCallDebugInformation
Auto Trait Implementations§
impl Freeze for SendCallDebugInformation
impl RefUnwindSafe for SendCallDebugInformation
impl Send for SendCallDebugInformation
impl Sync for SendCallDebugInformation
impl Unpin for SendCallDebugInformation
impl UnwindSafe for SendCallDebugInformation
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