Module error

Module error 

Source
Expand description

Error types for resource provider implementations.

This module provides error types that are shared across different resource provider implementations, independent of the underlying storage backend.

§Key Types

  • ProviderError - Generic provider error type for resource operations

§Usage

This error type is used with StandardResourceProvider<T> regardless of storage backend:

use scim_server::providers::StandardResourceProvider;
use scim_server::storage::InMemoryStorage;

let storage = InMemoryStorage::new();
let provider = StandardResourceProvider::new(storage);

Enums§

ProviderError
Errors that can occur during resource provider operations.