pub struct ExtensionRegistry {
pub features: FeatureFlags,
pub encryption: Arc<dyn EncryptionProvider>,
pub story: Arc<dyn StoryProvider>,
pub pricing: Arc<dyn PricingProvider>,
pub compliance: Arc<dyn ComplianceProvider>,
pub permissions: Arc<dyn PermissionsProvider>,
}Expand description
The central registry of pluggable features.
Fields§
§features: FeatureFlags§encryption: Arc<dyn EncryptionProvider>§story: Arc<dyn StoryProvider>§pricing: Arc<dyn PricingProvider>§compliance: Arc<dyn ComplianceProvider>§permissions: Arc<dyn PermissionsProvider>Trait Implementations§
Auto Trait Implementations§
impl Freeze for ExtensionRegistry
impl !RefUnwindSafe for ExtensionRegistry
impl Send for ExtensionRegistry
impl Sync for ExtensionRegistry
impl Unpin for ExtensionRegistry
impl UnsafeUnpin for ExtensionRegistry
impl !UnwindSafe for ExtensionRegistry
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