pub enum RatificationError {
StaleBase {
reviewed: String,
live: String,
},
UnknownClause(String),
AlreadyAccepted(String),
NothingSelected,
}Expand description
Why a ratification was refused. Every variant accepts nothing.
Variants§
StaleBase
The base moved under the review. Fail closed.
UnknownClause(String)
AlreadyAccepted(String)
NothingSelected
Trait Implementations§
Source§impl Clone for RatificationError
impl Clone for RatificationError
Source§fn clone(&self) -> RatificationError
fn clone(&self) -> RatificationError
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for RatificationError
impl Debug for RatificationError
Source§impl Display for RatificationError
impl Display for RatificationError
impl Eq for RatificationError
Source§impl Error for RatificationError
impl Error for RatificationError
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0:
use the Display impl or to_string()
Source§impl PartialEq for RatificationError
impl PartialEq for RatificationError
impl StructuralPartialEq for RatificationError
Auto Trait Implementations§
impl Freeze for RatificationError
impl RefUnwindSafe for RatificationError
impl Send for RatificationError
impl Sync for RatificationError
impl Unpin for RatificationError
impl UnsafeUnpin for RatificationError
impl UnwindSafe for RatificationError
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.