pub enum SerialError {
RuleNotFound(String),
RuleDisabled(String),
FormatError(String),
CounterOverflow(String),
StorageError(String),
}Expand description
单号生成器错误
Variants§
RuleNotFound(String)
规则未找到
RuleDisabled(String)
规则已禁用
FormatError(String)
格式解析错误
CounterOverflow(String)
计数器溢出
StorageError(String)
后端存储错误
Trait Implementations§
Source§impl Clone for SerialError
impl Clone for SerialError
Source§fn clone(&self) -> SerialError
fn clone(&self) -> SerialError
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 SerialError
impl Debug for SerialError
Source§impl Display for SerialError
impl Display for SerialError
Source§impl Error for SerialError
impl Error for SerialError
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()
Auto Trait Implementations§
impl Freeze for SerialError
impl RefUnwindSafe for SerialError
impl Send for SerialError
impl Sync for SerialError
impl Unpin for SerialError
impl UnsafeUnpin for SerialError
impl UnwindSafe for SerialError
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