pub trait CreateWithNoSupplyBuilder: CanCreateWithNoSupply {
    // Provided method
    fn create_with_no_initial_supply<Y, E>(
        self,
        env: &mut Y
    ) -> Result<ResourceManager, E>
       where Y: ClientApi<E>,
             E: Debug { ... }
}

Provided Methods§

source

fn create_with_no_initial_supply<Y, E>( self, env: &mut Y ) -> Result<ResourceManager, E>
where Y: ClientApi<E>, E: Debug,

Creates the resource with no initial supply.

The resource’s address is returned.

Object Safety§

This trait is not object safe.

Implementors§