Enum DispatchMode
#[repr(i32)]pub enum DispatchMode {
Node = 0,
Send = 1,
Post = 2,
}👎Deprecated
Expand description
Dispatch mode type. Deprecated: In Kanzi 3.5. All messages are delivered immediately, and DispatchMode property has no effect.
Variants§
Implementations§
§impl DispatchMode
impl DispatchMode
pub fn as_str(self) -> &'static str
pub fn convert(num: i32) -> DispatchMode
Trait Implementations§
§impl Clone for DispatchMode
impl Clone for DispatchMode
§fn clone(&self) -> DispatchMode
fn clone(&self) -> DispatchMode
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read more§impl Debug for DispatchMode
impl Debug for DispatchMode
§impl Display for DispatchMode
impl Display for DispatchMode
§impl PartialEq for DispatchMode
impl PartialEq for DispatchMode
§impl VariantConstraint for DispatchMode
impl VariantConstraint for DispatchMode
§type DataArg<'a> = DispatchMode
type DataArg<'a> = DispatchMode
Specifies the type of an argument that provides a value to
Variant.
Generally, this type matches Self, except for KanziString, Resource, and ResourceId. Read more§type RetArg = DispatchMode
type RetArg = DispatchMode
§fn as_arg(&self) -> <DispatchMode as VariantConstraint>::DataArg<'_>
fn as_arg(&self) -> <DispatchMode as VariantConstraint>::DataArg<'_>
impl Copy for DispatchMode
impl Eq for DispatchMode
impl PropertyTypeConstraint for DispatchMode
impl StructuralPartialEq for DispatchMode
Auto Trait Implementations§
impl Freeze for DispatchMode
impl RefUnwindSafe for DispatchMode
impl Send for DispatchMode
impl Sync for DispatchMode
impl Unpin for DispatchMode
impl UnwindSafe for DispatchMode
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