pub enum CompositeSelectionError {
Execution(ReplicatedTextSelectionError),
Processor(ProcessorSelectionError),
}Expand description
Fail-closed error from combined replicated composite selection.
Variants§
Execution(ReplicatedTextSelectionError)
Graph, parameter, storage, state, or session selection failed.
Processor(ProcessorSelectionError)
Input representation or processor mechanism selection failed.
Trait Implementations§
Source§impl Debug for CompositeSelectionError
impl Debug for CompositeSelectionError
Source§impl Display for CompositeSelectionError
impl Display for CompositeSelectionError
Source§impl Error for CompositeSelectionError
impl Error for CompositeSelectionError
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<ProcessorSelectionError> for CompositeSelectionError
impl From<ProcessorSelectionError> for CompositeSelectionError
Source§fn from(source: ProcessorSelectionError) -> Self
fn from(source: ProcessorSelectionError) -> Self
Converts to this type from the input type.
Source§impl From<ReplicatedTextSelectionError> for CompositeSelectionError
impl From<ReplicatedTextSelectionError> for CompositeSelectionError
Source§fn from(source: ReplicatedTextSelectionError) -> Self
fn from(source: ReplicatedTextSelectionError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for CompositeSelectionError
impl RefUnwindSafe for CompositeSelectionError
impl Send for CompositeSelectionError
impl Sync for CompositeSelectionError
impl Unpin for CompositeSelectionError
impl UnsafeUnpin for CompositeSelectionError
impl UnwindSafe for CompositeSelectionError
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