Struct scrypto_test::prelude::auth::AuthModule
source · pub struct AuthModule {
pub params: AuthZoneParams,
}Fields§
§params: AuthZoneParamsImplementations§
source§impl AuthModule
impl AuthModule
pub fn new(params: AuthZoneParams) -> AuthModule
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> SystemModule<System<V>> for AuthModulewhere
V: SystemCallbackObject,
impl<V> SystemModule<System<V>> for AuthModulewhere
V: SystemCallbackObject,
fn before_invoke<Y>(
_api: &mut Y,
_invocation: &KernelInvocation<Actor>
) -> Result<(), RuntimeError>where
Y: KernelApi<M>,
fn on_execution_start<Y>(_api: &mut Y) -> Result<(), RuntimeError>where
Y: KernelApi<M>,
fn on_execution_finish<Y>(
_api: &mut Y,
_message: &CallFrameMessage
) -> Result<(), RuntimeError>where
Y: KernelApi<M>,
fn after_invoke<Y>(
_api: &mut Y,
_output: &IndexedScryptoValue
) -> Result<(), RuntimeError>where
Y: KernelApi<M>,
fn on_pin_node(_system: &mut M, _node_id: &NodeId) -> Result<(), RuntimeError>
fn on_allocate_node_id<Y>(
_api: &mut Y,
_entity_type: EntityType
) -> Result<(), RuntimeError>where
Y: KernelApi<M>,
fn on_create_node<Y>(
_api: &mut Y,
_event: &CreateNodeEvent<'_>
) -> Result<(), RuntimeError>where
Y: KernelInternalApi<M>,
fn on_move_module<Y>(
_api: &mut Y,
_event: &MoveModuleEvent<'_>
) -> Result<(), RuntimeError>where
Y: KernelInternalApi<M>,
fn on_drop_node<Y>(
_api: &mut Y,
_event: &DropNodeEvent<'_>
) -> Result<(), RuntimeError>where
Y: KernelInternalApi<M>,
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>(
_api: &mut Y,
_event: &OpenSubstateEvent<'_>
) -> Result<(), RuntimeError>where
Y: KernelInternalApi<M>,
fn on_read_substate<Y>(
_api: &mut Y,
_event: &ReadSubstateEvent<'_>
) -> Result<(), RuntimeError>where
Y: KernelInternalApi<M>,
fn on_write_substate<Y>(
_api: &mut Y,
_event: &WriteSubstateEvent<'_>
) -> Result<(), RuntimeError>where
Y: KernelInternalApi<M>,
fn on_close_substate<Y>(
_api: &mut Y,
_event: &CloseSubstateEvent
) -> Result<(), RuntimeError>where
Y: KernelInternalApi<M>,
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.source§impl<T> DowncastSync for T
impl<T> DowncastSync for T
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more