#[non_exhaustive]pub enum CommunicationRealizationError {
Manifest(CommunicationManifestError),
Capability(CommunicationCapabilityError),
LocalManifestMismatch,
}Expand description
Failure while converting compatible manifests into a native-resource-free communication realization.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Manifest(CommunicationManifestError)
Rank-local manifests are not one compatible complete-world projection.
Capability(CommunicationCapabilityError)
Required operation, completion, or reachability support is unavailable.
LocalManifestMismatch
The separately supplied local manifest differs from its agreed rank entry.
Trait Implementations§
Source§impl Clone for CommunicationRealizationError
impl Clone for CommunicationRealizationError
Source§fn clone(&self) -> CommunicationRealizationError
fn clone(&self) -> CommunicationRealizationError
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 moreimpl Eq for CommunicationRealizationError
Source§impl Error for CommunicationRealizationError
impl Error for CommunicationRealizationError
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<CommunicationCapabilityError> for CommunicationRealizationError
impl From<CommunicationCapabilityError> for CommunicationRealizationError
Source§fn from(source: CommunicationCapabilityError) -> Self
fn from(source: CommunicationCapabilityError) -> Self
Converts to this type from the input type.
Source§impl From<CommunicationManifestError> for CommunicationRealizationError
impl From<CommunicationManifestError> for CommunicationRealizationError
Source§fn from(source: CommunicationManifestError) -> Self
fn from(source: CommunicationManifestError) -> Self
Converts to this type from the input type.
impl StructuralPartialEq for CommunicationRealizationError
Auto Trait Implementations§
impl Freeze for CommunicationRealizationError
impl RefUnwindSafe for CommunicationRealizationError
impl Send for CommunicationRealizationError
impl Sync for CommunicationRealizationError
impl Unpin for CommunicationRealizationError
impl UnsafeUnpin for CommunicationRealizationError
impl UnwindSafe for CommunicationRealizationError
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