#[non_exhaustive]pub enum SkeletonResult {
Reply(Vec<u8>),
Exception(CorbaException),
BadOperation,
NotYetWired,
}Expand description
Result of a skeleton dispatch.
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.
Reply(Vec<u8>)
Operation succeeded, reply bytes are available.
Exception(CorbaException)
Operation threw a user or system exception.
BadOperation
Unknown operation name for the interface — the POA must return BAD_OPERATION.
NotYetWired
Operation is declared but wire marshalling is phase 2 — placeholder for now.
Trait Implementations§
Source§impl Clone for SkeletonResult
impl Clone for SkeletonResult
Source§fn clone(&self) -> SkeletonResult
fn clone(&self) -> SkeletonResult
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 SkeletonResult
impl Debug for SkeletonResult
impl Eq for SkeletonResult
Source§impl PartialEq for SkeletonResult
impl PartialEq for SkeletonResult
Source§fn eq(&self, other: &SkeletonResult) -> bool
fn eq(&self, other: &SkeletonResult) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for SkeletonResult
Auto Trait Implementations§
impl Freeze for SkeletonResult
impl RefUnwindSafe for SkeletonResult
impl Send for SkeletonResult
impl Sync for SkeletonResult
impl Unpin for SkeletonResult
impl UnsafeUnpin for SkeletonResult
impl UnwindSafe for SkeletonResult
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