Struct radix_engine::system::system_modules::auth::AuthModule
source · pub struct AuthModule {
pub params: AuthZoneParams,
}
Fields§
§params: AuthZoneParams
Implementations§
source§impl AuthModule
impl AuthModule
pub fn new(params: AuthZoneParams) -> Self
pub fn on_call_function<V, Y>( api: &mut SystemService<'_, Y, V>, blueprint_id: &BlueprintId, ident: &str ) -> Result<NodeId, RuntimeError>
pub fn on_call_function_finish<V, Y>( api: &mut SystemService<'_, Y, V>, auth_zone: NodeId ) -> Result<(), RuntimeError>
pub fn on_call_method<V, Y>( api: &mut SystemService<'_, Y, V>, receiver: &NodeId, module_id: ModuleId, direct_access: bool, ident: &str, args: &IndexedScryptoValue ) -> Result<NodeId, RuntimeError>
pub fn on_call_method_finish<V, Y>( api: &mut SystemService<'_, Y, V>, auth_zone: NodeId ) -> Result<(), RuntimeError>
sourcepub fn on_call_fn_mock<V, Y>(
system: &mut SystemService<'_, Y, V>,
receiver: Option<(&NodeId, bool)>,
virtual_resources: BTreeSet<ResourceAddress>,
virtual_non_fungibles: BTreeSet<NonFungibleGlobalId>
) -> Result<NodeId, RuntimeError>
pub fn on_call_fn_mock<V, Y>( system: &mut SystemService<'_, Y, V>, receiver: Option<(&NodeId, bool)>, virtual_resources: BTreeSet<ResourceAddress>, virtual_non_fungibles: BTreeSet<NonFungibleGlobalId> ) -> Result<NodeId, RuntimeError>
On CALL_FUNCTION or CALL_METHOD, when auth module is disabled.
pub fn teardown_auth_zone<V, Y>( api: &mut SystemService<'_, Y, V>, self_auth_zone: NodeId ) -> Result<(), RuntimeError>
Trait Implementations§
source§impl Clone for AuthModule
impl Clone for AuthModule
source§fn clone(&self) -> AuthModule
fn clone(&self) -> AuthModule
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 AuthModule
impl Debug for AuthModule
source§impl InitSystemModule for AuthModule
impl InitSystemModule for AuthModule
fn init(&mut self) -> Result<(), BootloadingError>
fn on_teardown(&mut self) -> Result<(), RuntimeError>
source§impl<V: SystemCallbackObject> SystemModule<System<V>> for AuthModule
impl<V: SystemCallbackObject> SystemModule<System<V>> for AuthModule
fn before_invoke<Y: KernelApi<M>>( _api: &mut Y, _invocation: &KernelInvocation<Actor> ) -> Result<(), RuntimeError>
fn on_execution_start<Y: KernelApi<M>>(_api: &mut Y) -> Result<(), RuntimeError>
fn on_execution_finish<Y: KernelApi<M>>( _api: &mut Y, _message: &CallFrameMessage ) -> Result<(), RuntimeError>
fn after_invoke<Y: KernelApi<M>>( _api: &mut Y, _output: &IndexedScryptoValue ) -> Result<(), RuntimeError>
fn on_pin_node(_system: &mut M, _node_id: &NodeId) -> Result<(), RuntimeError>
fn on_allocate_node_id<Y: KernelApi<M>>( _api: &mut Y, _entity_type: EntityType ) -> Result<(), RuntimeError>
fn on_create_node<Y: KernelInternalApi<M>>( _api: &mut Y, _event: &CreateNodeEvent<'_> ) -> Result<(), RuntimeError>
fn on_move_module<Y: KernelInternalApi<M>>( _api: &mut Y, _event: &MoveModuleEvent<'_> ) -> Result<(), RuntimeError>
fn on_drop_node<Y: KernelInternalApi<M>>( _api: &mut Y, _event: &DropNodeEvent<'_> ) -> Result<(), RuntimeError>
fn on_mark_substate_as_transient( _system: &mut M, _node_id: &NodeId, _partition_number: &PartitionNumber, _substate_key: &SubstateKey ) -> Result<(), RuntimeError>
fn on_open_substate<Y: KernelInternalApi<M>>( _api: &mut Y, _event: &OpenSubstateEvent<'_> ) -> Result<(), RuntimeError>
fn on_read_substate<Y: KernelInternalApi<M>>( _api: &mut Y, _event: &ReadSubstateEvent<'_> ) -> Result<(), RuntimeError>
fn on_write_substate<Y: KernelInternalApi<M>>( _api: &mut Y, _event: &WriteSubstateEvent<'_> ) -> Result<(), RuntimeError>
fn on_close_substate<Y: KernelInternalApi<M>>( _api: &mut Y, _event: &CloseSubstateEvent ) -> Result<(), RuntimeError>
fn on_set_substate( _system: &mut M, _event: &SetSubstateEvent<'_> ) -> Result<(), RuntimeError>
fn on_remove_substate( _system: &mut M, _event: &RemoveSubstateEvent<'_> ) -> Result<(), RuntimeError>
fn on_scan_keys( _system: &mut M, _event: &ScanKeysEvent<'_> ) -> Result<(), RuntimeError>
fn on_drain_substates( _system: &mut M, _event: &DrainSubstatesEvent<'_> ) -> Result<(), RuntimeError>
fn on_scan_sorted_substates( _system: &mut M, _event: &ScanSortedSubstatesEvent<'_> ) -> Result<(), RuntimeError>
Auto Trait Implementations§
impl Freeze for AuthModule
impl RefUnwindSafe for AuthModule
impl Send for AuthModule
impl Sync for AuthModule
impl Unpin for AuthModule
impl UnwindSafe for AuthModule
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
source§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
source§fn into_any(self: Box<T>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
Convert
Box<dyn Trait>
(where Trait: Downcast
) to Box<dyn Any>
. Box<dyn Any>
can
then be further downcast
into Box<ConcreteType>
where ConcreteType
implements Trait
.source§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Convert
Rc<Trait>
(where Trait: Downcast
) to Rc<Any>
. Rc<Any>
can then be
further downcast
into Rc<ConcreteType>
where ConcreteType
implements Trait
.source§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
Convert
&Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &Any
’s vtable from &Trait
’s.source§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
Convert
&mut Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &mut Any
’s vtable from &mut Trait
’s.