pub struct SignalStateResponse {
pub process_id: String,
pub handlers: HashMap<u32, SignalHandlerRegistration>,
}Fields§
§process_id: String§handlers: HashMap<u32, SignalHandlerRegistration>Trait Implementations§
Source§impl Clone for SignalStateResponse
impl Clone for SignalStateResponse
Source§fn clone(&self) -> SignalStateResponse
fn clone(&self) -> SignalStateResponse
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 SignalStateResponse
impl Debug for SignalStateResponse
Source§impl<'de> Deserialize<'de> for SignalStateResponse
impl<'de> Deserialize<'de> for SignalStateResponse
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
impl Eq for SignalStateResponse
Source§impl PartialEq for SignalStateResponse
impl PartialEq for SignalStateResponse
Source§fn eq(&self, other: &SignalStateResponse) -> bool
fn eq(&self, other: &SignalStateResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for SignalStateResponse
impl Serialize for SignalStateResponse
impl StructuralPartialEq for SignalStateResponse
Auto Trait Implementations§
impl Freeze for SignalStateResponse
impl RefUnwindSafe for SignalStateResponse
impl Send for SignalStateResponse
impl Sync for SignalStateResponse
impl Unpin for SignalStateResponse
impl UnsafeUnpin for SignalStateResponse
impl UnwindSafe for SignalStateResponse
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