pub enum PriorityModel {
ServerDeclared,
ClientPropagated,
}Expand description
Priority-Model (RT-CORBA §5.4.1).
Variants§
ServerDeclared
SERVER_DECLARED — the server determines the execution priority.
ClientPropagated
CLIENT_PROPAGATED — the client priority travels along and applies at the server.
Trait Implementations§
Source§impl Clone for PriorityModel
impl Clone for PriorityModel
Source§fn clone(&self) -> PriorityModel
fn clone(&self) -> PriorityModel
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 Copy for PriorityModel
Source§impl Debug for PriorityModel
impl Debug for PriorityModel
impl Eq for PriorityModel
Source§impl PartialEq for PriorityModel
impl PartialEq for PriorityModel
Source§fn eq(&self, other: &PriorityModel) -> bool
fn eq(&self, other: &PriorityModel) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for PriorityModel
Auto Trait Implementations§
impl Freeze for PriorityModel
impl RefUnwindSafe for PriorityModel
impl Send for PriorityModel
impl Sync for PriorityModel
impl Unpin for PriorityModel
impl UnsafeUnpin for PriorityModel
impl UnwindSafe for PriorityModel
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