pub enum Resp<R> {
Vote(VoteResp),
Lead(LeadResp),
Repl(ReplResp),
Snap(SnapResp),
Health(HealthResp),
Mgmt(MgmtResp),
Client(ClientResp<R>),
}
Variants§
Vote(VoteResp)
Lead(LeadResp)
Repl(ReplResp)
Snap(SnapResp)
Health(HealthResp)
Mgmt(MgmtResp)
Client(ClientResp<R>)
Auto Trait Implementations§
impl<R> Freeze for Resp<R>where
R: Freeze,
impl<R> RefUnwindSafe for Resp<R>where
R: RefUnwindSafe,
impl<R> Send for Resp<R>where
R: Send,
impl<R> Sync for Resp<R>where
R: Sync,
impl<R> Unpin for Resp<R>where
R: Unpin,
impl<R> UnwindSafe for Resp<R>where
R: UnwindSafe,
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