pub trait StorageRef<T>: Associated<T> {
    // Required methods
    fn try_mutate_associated<F, R, E>(self, f: F) -> Result<R, E>
       where F: FnOnce(&mut Option<Self::Value>) -> Result<R, E>;
    fn view_associated<F, R>(self, f: F) -> R
       where F: FnOnce(Option<Self::Value>) -> R;
}
Expand description

Allows to view and mutate a value associated with Self.

Required Methods§

source

fn try_mutate_associated<F, R, E>(self, f: F) -> Result<R, E>where F: FnOnce(&mut Option<Self::Value>) -> Result<R, E>,

Attempts to mutate a value associated with Self. If the value under the option is taken, the associated value will be removed. All updates will be applied only in case of a successful result.

source

fn view_associated<F, R>(self, f: F) -> Rwhere F: FnOnce(Option<Self::Value>) -> R,

Calls provided function with an associated value as an argument.

Implementations on Foreign Types§

source§

impl<T> StorageRef<T> for ()

source§

fn try_mutate_associated<F, R, E>(self, f: F) -> Result<R, E>where F: FnOnce(&mut Option<()>) -> Result<R, E>,

source§

fn view_associated<F, R>(self, f: F) -> Rwhere F: FnOnce(Option<()>) -> R,

source§

impl<T: Config> StorageRef<T> for (TrustRegistryIdForParticipants, IssuerOrVerifier)

source§

fn try_mutate_associated<F, R, E>(self, f: F) -> Result<R, E>where F: FnOnce(&mut Option<TrustRegistryStoredParticipantInformation<T>>) -> Result<R, E>,

source§

fn view_associated<F, R>(self, f: F) -> Rwhere F: FnOnce(Option<TrustRegistryStoredParticipantInformation<T>>) -> R,

source§

impl<T: Config> StorageRef<T> for (TrustRegistryId, Issuer)

source§

fn try_mutate_associated<F, R, E>(self, f: F) -> Result<R, E>where F: FnOnce(&mut Option<TrustRegistryIssuerConfiguration<T>>) -> Result<R, E>,

source§

fn view_associated<F, R>(self, f: F) -> Rwhere F: FnOnce(Option<TrustRegistryIssuerConfiguration<T>>) -> R,

Implementors§