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