pub enum IngestResponse {
AuthResponse {
ok: bool,
message: Option<String>,
},
UnauthenticatedResponse {},
IngestStatusResponse {
current_timeline: Option<TimelineId>,
events_received: u64,
events_written: u64,
events_pending: u64,
},
}Variants
AuthResponse
UnauthenticatedResponse
Fields
IngestStatusResponse
Fields
current_timeline: Option<TimelineId>events_received: u64events_written: u64events_pending: u64Trait Implementations
sourceimpl Debug for IngestResponse
impl Debug for IngestResponse
Auto Trait Implementations
impl RefUnwindSafe for IngestResponse
impl Send for IngestResponse
impl Sync for IngestResponse
impl Unpin for IngestResponse
impl UnwindSafe for IngestResponse
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more