#[non_exhaustive]pub enum SkeletonResult {
Reply(Vec<u8>),
Exception(CorbaException),
BadOperation,
NotYetWired,
}Expand description
Result eines Skeleton-Dispatches.
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 erfolgreich, Reply-Bytes liegen vor.
Exception(CorbaException)
Operation hat eine User- oder System-Exception geworfen.
BadOperation
Unbekannter Operation-Name fuer das Interface — der POA muss BAD_OPERATION zurueckgeben.
NotYetWired
Operation ist deklariert aber Wire-Marshalling ist Phase-2 — vorerst Platzhalter.
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
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 Eq for SkeletonResult
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