pub enum AdminServiceEvent {
ProposalSubmitted(CircuitProposal),
ProposalVote((CircuitProposal, Vec<u8>)),
ProposalAccepted((CircuitProposal, Vec<u8>)),
ProposalRejected((CircuitProposal, Vec<u8>)),
CircuitReady(CircuitProposal),
}Variants
ProposalSubmitted(CircuitProposal)
ProposalVote((CircuitProposal, Vec<u8>))
ProposalAccepted((CircuitProposal, Vec<u8>))
ProposalRejected((CircuitProposal, Vec<u8>))
CircuitReady(CircuitProposal)
Implementations
sourceimpl AdminServiceEvent
impl AdminServiceEvent
pub fn proposal(&self) -> &CircuitProposal
Trait Implementations
sourceimpl Clone for AdminServiceEvent
impl Clone for AdminServiceEvent
sourcefn clone(&self) -> AdminServiceEvent
fn clone(&self) -> AdminServiceEvent
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl Debug for AdminServiceEvent
impl Debug for AdminServiceEvent
sourceimpl<'de> Deserialize<'de> for AdminServiceEvent
impl<'de> Deserialize<'de> for AdminServiceEvent
sourcefn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
sourceimpl PartialEq<AdminServiceEvent> for AdminServiceEvent
impl PartialEq<AdminServiceEvent> for AdminServiceEvent
sourcefn eq(&self, other: &AdminServiceEvent) -> bool
fn eq(&self, other: &AdminServiceEvent) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcefn ne(&self, other: &AdminServiceEvent) -> bool
fn ne(&self, other: &AdminServiceEvent) -> bool
This method tests for !=.
sourceimpl Serialize for AdminServiceEvent
impl Serialize for AdminServiceEvent
sourceimpl TryFrom<&AdminServiceEvent> for AdminServiceEvent
impl TryFrom<&AdminServiceEvent> for AdminServiceEvent
type Error = MarshallingError
type Error = MarshallingError
The type returned in the event of a conversion error.
sourcefn try_from(event_entry: &AdminServiceEvent) -> Result<Self, Self::Error>
fn try_from(event_entry: &AdminServiceEvent) -> Result<Self, Self::Error>
Performs the conversion.
impl Eq for AdminServiceEvent
impl StructuralEq for AdminServiceEvent
impl StructuralPartialEq for AdminServiceEvent
Auto Trait Implementations
impl RefUnwindSafe for AdminServiceEvent
impl Send for AdminServiceEvent
impl Sync for AdminServiceEvent
impl Unpin for AdminServiceEvent
impl UnwindSafe for AdminServiceEvent
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
sourceimpl<Q, K> Equivalent<K> for Q where
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Q where
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
sourcefn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to key and return true if they are equal.
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Instruments this type with the provided Span, returning an
Instrumented wrapper. Read more
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<P, N> IntoBytes<P> for N where
P: Message + FromNative<N>,
impl<P, N> IntoBytes<P> for N where
P: Message + FromNative<N>,
fn into_bytes(self) -> Result<Vec<u8, Global>, ProtoConversionError>
sourceimpl<N, P> IntoNative<N> for P where
N: FromProto<P>,
impl<N, P> IntoNative<N> for P where
N: FromProto<P>,
fn into_native(self) -> Result<N, ProtoConversionError>
sourceimpl<N, P> IntoProto<P> for N where
P: FromNative<N>,
impl<N, P> IntoProto<P> for N where
P: FromNative<N>,
fn into_proto(self) -> Result<P, ProtoConversionError>
sourceimpl<T> IntoSql for T
impl<T> IntoSql for T
sourcefn into_sql<T>(self) -> Self::Expression where
Self: AsExpression<T>,
fn into_sql<T>(self) -> Self::Expression where
Self: AsExpression<T>,
Convert self to an expression for Diesel’s query builder. Read more
sourcefn as_sql<'a, T>(&'a self) -> <&'a Self as AsExpression<T>>::Expression where
&'a Self: AsExpression<T>,
fn as_sql<'a, T>(&'a self) -> <&'a Self as AsExpression<T>>::Expression where
&'a Self: AsExpression<T>,
Convert &self to an expression for Diesel’s query builder. Read more
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
fn vzip(self) -> V
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more