TransactionalDictionaryChanges

Trait TransactionalDictionaryChanges 

Source
pub trait TransactionalDictionaryChanges {
    // Required methods
    fn find_dictionary(&self, id: DictionaryId) -> Option<&DictionaryDef>;
    fn find_dictionary_by_name<'a>(
        &self,
        namespace: NamespaceId,
        name: impl IntoFragment<'a>,
    ) -> Option<&DictionaryDef>;
    fn is_dictionary_deleted(&self, id: DictionaryId) -> bool;
    fn is_dictionary_deleted_by_name<'a>(
        &self,
        namespace: NamespaceId,
        name: impl IntoFragment<'a>,
    ) -> bool;
}

Required Methods§

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§