pub struct InspectRequestedEvent { /* private fields */ }Available on crate feature
Runtime only.Expand description
Issued when object should be inspected (for example, as a result of inspect() command line API call).
Implementations§
Source§impl InspectRequestedEvent
impl InspectRequestedEvent
pub fn new(object: RemoteObject, hints: InspectRequestedEventHints) -> Self
pub fn object(&self) -> &RemoteObject
pub fn hints(&self) -> &InspectRequestedEventHints
Trait Implementations§
Source§impl Clone for InspectRequestedEvent
impl Clone for InspectRequestedEvent
Source§fn clone(&self) -> InspectRequestedEvent
fn clone(&self) -> InspectRequestedEvent
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 InspectRequestedEvent
impl Debug for InspectRequestedEvent
Source§impl<'de> Deserialize<'de> for InspectRequestedEvent
impl<'de> Deserialize<'de> for InspectRequestedEvent
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 InspectRequestedEvent
impl RefUnwindSafe for InspectRequestedEvent
impl Send for InspectRequestedEvent
impl Sync for InspectRequestedEvent
impl Unpin for InspectRequestedEvent
impl UnwindSafe for InspectRequestedEvent
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