pub enum IpEvent {
Result(Box<IpResponse>),
Error {
query: String,
error: RdapError,
},
}Expand description
Emitted by stream_ip for each queried IP address.
Variants§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for IpEvent
impl !RefUnwindSafe for IpEvent
impl Send for IpEvent
impl Sync for IpEvent
impl Unpin for IpEvent
impl UnsafeUnpin for IpEvent
impl !UnwindSafe for IpEvent
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