scim-server 0.4.0

A comprehensive SCIM 2.0 server library for Rust with multi-tenant support and type-safe operations
Documentation
1
2
3
4
5
6
7
8
9
10
//! Builder utilities for operation handler types
//!
//! This module provides convenient builder methods for constructing
//! operation handler types such as ScimOperationRequest and ScimQuery.

pub mod query;
pub mod request;

// Builder implementations are available through impl blocks on core types
// No re-exports needed since modules only contain trait implementations