pub struct DetachedParams {
pub reason: String,
}Expand description
Fired when remote debugging connection is about to be terminated. Contains detach reason. detached
Fields§
§reason: StringThe reason why connection has been terminated.
Trait Implementations§
Source§impl Clone for DetachedParams
impl Clone for DetachedParams
Source§fn clone(&self) -> DetachedParams
fn clone(&self) -> DetachedParams
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 DetachedParams
impl Debug for DetachedParams
Source§impl<'de> Deserialize<'de> for DetachedParams
impl<'de> Deserialize<'de> for DetachedParams
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 DetachedParams
impl PartialEq for DetachedParams
Source§impl Serialize for DetachedParams
impl Serialize for DetachedParams
impl StructuralPartialEq for DetachedParams
Auto Trait Implementations§
impl Freeze for DetachedParams
impl RefUnwindSafe for DetachedParams
impl Send for DetachedParams
impl Sync for DetachedParams
impl Unpin for DetachedParams
impl UnsafeUnpin for DetachedParams
impl UnwindSafe for DetachedParams
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