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