pub struct EventDirectUdpSocketJoinedMulticastGroup {
pub identifier: RequestId,
pub ip_address: String,
}Fields§
§identifier: RequestId§ip_address: StringImplementations§
Source§impl EventDirectUdpSocketJoinedMulticastGroup
impl EventDirectUdpSocketJoinedMulticastGroup
pub const IDENTIFIER: &'static str = "Network.directUDPSocketJoinedMulticastGroup"
Trait Implementations§
Source§impl Clone for EventDirectUdpSocketJoinedMulticastGroup
impl Clone for EventDirectUdpSocketJoinedMulticastGroup
Source§fn clone(&self) -> EventDirectUdpSocketJoinedMulticastGroup
fn clone(&self) -> EventDirectUdpSocketJoinedMulticastGroup
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<'de> Deserialize<'de> for EventDirectUdpSocketJoinedMulticastGroup
impl<'de> Deserialize<'de> for EventDirectUdpSocketJoinedMulticastGroup
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<EventDirectUdpSocketJoinedMulticastGroup, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<EventDirectUdpSocketJoinedMulticastGroup, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl From<EventDirectUdpSocketJoinedMulticastGroup> for CdpEvent
impl From<EventDirectUdpSocketJoinedMulticastGroup> for CdpEvent
Source§fn from(el: EventDirectUdpSocketJoinedMulticastGroup) -> CdpEvent
fn from(el: EventDirectUdpSocketJoinedMulticastGroup) -> CdpEvent
Converts to this type from the input type.
Source§impl IntoEventKind for EventDirectUdpSocketJoinedMulticastGroup
impl IntoEventKind for EventDirectUdpSocketJoinedMulticastGroup
Source§fn event_kind() -> EventKindwhere
EventDirectUdpSocketJoinedMulticastGroup: Sized + 'static,
fn event_kind() -> EventKindwhere
EventDirectUdpSocketJoinedMulticastGroup: Sized + 'static,
What kind of event this type is
Source§impl Method for EventDirectUdpSocketJoinedMulticastGroup
impl Method for EventDirectUdpSocketJoinedMulticastGroup
Source§fn identifier(&self) -> Cow<'static, str>
fn identifier(&self) -> Cow<'static, str>
The whole string identifier for this method like:
DOM.removeNodeSource§fn domain_name(&self) -> Cow<'static, str>
fn domain_name(&self) -> Cow<'static, str>
The name of the domain this method belongs to:
DOMSource§fn method_name(&self) -> Cow<'static, str>
fn method_name(&self) -> Cow<'static, str>
The standalone identifier of the method inside the domain:
removeNodeSource§impl PartialEq for EventDirectUdpSocketJoinedMulticastGroup
impl PartialEq for EventDirectUdpSocketJoinedMulticastGroup
Source§fn eq(&self, other: &EventDirectUdpSocketJoinedMulticastGroup) -> bool
fn eq(&self, other: &EventDirectUdpSocketJoinedMulticastGroup) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for EventDirectUdpSocketJoinedMulticastGroup
impl Serialize for EventDirectUdpSocketJoinedMulticastGroup
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl StructuralPartialEq for EventDirectUdpSocketJoinedMulticastGroup
Auto Trait Implementations§
impl Freeze for EventDirectUdpSocketJoinedMulticastGroup
impl RefUnwindSafe for EventDirectUdpSocketJoinedMulticastGroup
impl Send for EventDirectUdpSocketJoinedMulticastGroup
impl Sync for EventDirectUdpSocketJoinedMulticastGroup
impl Unpin for EventDirectUdpSocketJoinedMulticastGroup
impl UnsafeUnpin for EventDirectUdpSocketJoinedMulticastGroup
impl UnwindSafe for EventDirectUdpSocketJoinedMulticastGroup
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