#[repr(u32)]pub enum in3_plugin_act_t {
Show 29 variants
PLGN_ACT_INIT = 1,
PLGN_ACT_TERM = 2,
PLGN_ACT_TRANSPORT_SEND = 4,
PLGN_ACT_TRANSPORT_RECEIVE = 8,
PLGN_ACT_TRANSPORT_CLEAN = 16,
PLGN_ACT_SIGN_ACCOUNT = 32,
PLGN_ACT_SIGN_PUBLICKEY = 64,
PLGN_ACT_SIGN_PREPARE = 128,
PLGN_ACT_SIGN = 256,
PLGN_ACT_RPC_HANDLE = 512,
PLGN_ACT_RPC_VERIFY = 1_024,
PLGN_ACT_CACHE_SET = 2_048,
PLGN_ACT_CACHE_GET = 4_096,
PLGN_ACT_CACHE_CLEAR = 8_192,
PLGN_ACT_CONFIG_SET = 16_384,
PLGN_ACT_CONFIG_GET = 32_768,
PLGN_ACT_PAY_PREPARE = 65_536,
PLGN_ACT_PAY_FOLLOWUP = 131_072,
PLGN_ACT_PAY_HANDLE = 262_144,
PLGN_ACT_PAY_SIGN_REQ = 524_288,
PLGN_ACT_LOG_ERROR = 1_048_576,
PLGN_ACT_NL_PICK = 2_097_152,
PLGN_ACT_NL_PICK_FOLLOWUP = 4_194_304,
PLGN_ACT_NL_BLACKLIST = 8_388_608,
PLGN_ACT_NL_FAILABLE = 16_777_216,
PLGN_ACT_NL_OFFLINE = 33_554_432,
PLGN_ACT_CHAIN_CHANGE = 67_108_864,
PLGN_ACT_GET_DATA = 134_217_728,
PLGN_ACT_ADD_PAYLOAD = 268_435_456,
}Variants§
PLGN_ACT_INIT = 1
PLGN_ACT_TERM = 2
PLGN_ACT_TRANSPORT_SEND = 4
PLGN_ACT_TRANSPORT_RECEIVE = 8
PLGN_ACT_TRANSPORT_CLEAN = 16
PLGN_ACT_SIGN_ACCOUNT = 32
PLGN_ACT_SIGN_PUBLICKEY = 64
PLGN_ACT_SIGN_PREPARE = 128
PLGN_ACT_SIGN = 256
PLGN_ACT_RPC_HANDLE = 512
PLGN_ACT_RPC_VERIFY = 1_024
PLGN_ACT_CACHE_SET = 2_048
PLGN_ACT_CACHE_GET = 4_096
PLGN_ACT_CACHE_CLEAR = 8_192
PLGN_ACT_CONFIG_SET = 16_384
PLGN_ACT_CONFIG_GET = 32_768
PLGN_ACT_PAY_PREPARE = 65_536
PLGN_ACT_PAY_FOLLOWUP = 131_072
PLGN_ACT_PAY_HANDLE = 262_144
PLGN_ACT_PAY_SIGN_REQ = 524_288
PLGN_ACT_LOG_ERROR = 1_048_576
PLGN_ACT_NL_PICK = 2_097_152
PLGN_ACT_NL_PICK_FOLLOWUP = 4_194_304
PLGN_ACT_NL_BLACKLIST = 8_388_608
PLGN_ACT_NL_FAILABLE = 16_777_216
PLGN_ACT_NL_OFFLINE = 33_554_432
PLGN_ACT_CHAIN_CHANGE = 67_108_864
PLGN_ACT_GET_DATA = 134_217_728
PLGN_ACT_ADD_PAYLOAD = 268_435_456
Trait Implementations§
Source§impl Clone for in3_plugin_act_t
impl Clone for in3_plugin_act_t
Source§fn clone(&self) -> in3_plugin_act_t
fn clone(&self) -> in3_plugin_act_t
Returns a copy 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 moreSource§impl Debug for in3_plugin_act_t
impl Debug for in3_plugin_act_t
Source§impl Hash for in3_plugin_act_t
impl Hash for in3_plugin_act_t
Source§impl PartialEq for in3_plugin_act_t
impl PartialEq for in3_plugin_act_t
impl Copy for in3_plugin_act_t
impl Eq for in3_plugin_act_t
impl StructuralPartialEq for in3_plugin_act_t
Auto Trait Implementations§
impl Freeze for in3_plugin_act_t
impl RefUnwindSafe for in3_plugin_act_t
impl Send for in3_plugin_act_t
impl Sync for in3_plugin_act_t
impl Unpin for in3_plugin_act_t
impl UnwindSafe for in3_plugin_act_t
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