pub enum SerialCompletionError {
Realization(StrictRealizationError),
Completion(CompletionError),
Plan(SerialPlanError),
NoLegalCandidates(String),
Identity(String),
}Expand description
Failure to filter, realize, or adapt generic completion into serial evidence.
Variants§
Realization(StrictRealizationError)
Rendering the realized serial plan to canonical staff failed.
Completion(CompletionError)
Generic completion itself failed.
Plan(SerialPlanError)
Building the post-completion serial evidence plan failed.
NoLegalCandidates(String)
The request admitted no serial-legal candidates.
Identity(String)
One generated identity was malformed.
Trait Implementations§
Source§impl Clone for SerialCompletionError
impl Clone for SerialCompletionError
Source§fn clone(&self) -> SerialCompletionError
fn clone(&self) -> SerialCompletionError
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 SerialCompletionError
impl Debug for SerialCompletionError
Source§impl Display for SerialCompletionError
impl Display for SerialCompletionError
impl Eq for SerialCompletionError
Source§impl Error for SerialCompletionError
impl Error for SerialCompletionError
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 From<CompletionError> for SerialCompletionError
impl From<CompletionError> for SerialCompletionError
Source§fn from(source: CompletionError) -> Self
fn from(source: CompletionError) -> Self
Converts to this type from the input type.
Source§impl From<SerialPlanError> for SerialCompletionError
impl From<SerialPlanError> for SerialCompletionError
Source§fn from(source: SerialPlanError) -> Self
fn from(source: SerialPlanError) -> Self
Converts to this type from the input type.
Source§impl From<StrictRealizationError> for SerialCompletionError
impl From<StrictRealizationError> for SerialCompletionError
Source§fn from(source: StrictRealizationError) -> Self
fn from(source: StrictRealizationError) -> Self
Converts to this type from the input type.
Source§impl PartialEq for SerialCompletionError
impl PartialEq for SerialCompletionError
impl StructuralPartialEq for SerialCompletionError
Auto Trait Implementations§
impl Freeze for SerialCompletionError
impl RefUnwindSafe for SerialCompletionError
impl Send for SerialCompletionError
impl Sync for SerialCompletionError
impl Unpin for SerialCompletionError
impl UnsafeUnpin for SerialCompletionError
impl UnwindSafe for SerialCompletionError
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