Crates.io | scim_v2 |
lib.rs | scim_v2 |
version | 0.2.3 |
source | src |
created_at | 2024-03-21 09:27:29.184162 |
updated_at | 2024-03-26 09:55:41.255414 |
description | A crate that provides utilities for working with the System for Cross-domain Identity Management (SCIM) version 2.0 protocol. (rfc7642, rfc7643, rfc7644) |
homepage | |
repository | https://github.com/ShiftControl-io/scim-v2-rust |
max_upload_size | |
id | 1181417 |
size | 167,619 |
`scim_v2` is a Rust crate that provides utilities for working with the System for Cross-domain Identity Management ( SCIM) version 2.0 protocol.
This crate provides functionalities for:
To use `scim_v2` in your project, add the following to your `Cargo.toml`:
[dependencies]
scim_v2 = "0.2.3"
Then run `cargo build` to download and compile the `scim_v2` crate and all its dependencies.
Here are some examples of how you can use this crate:
use scim_v2::models::user::User;
let user = User {
user_name: "jdoe@example.com".to_string(),
// other fields...
..Default::default()
};
match user.validate() {
Ok(_) => println!("User is valid."),
Err(e) => println!("User is invalid: {}", e),
}
use scim_v2::models::user::User;
let user = User {
schemas: vec!["urn:ietf:params:scim:schemas:core:2.0:User".to_string()],
user_name: "jdoe@example.com".to_string(),
// Initialize other fields as necessary...
..Default::default ()
};
match user.serialize() {
Ok(json) => println ! ("Serialized User: {}", json),
Err(e) => println !("Serialization error: {}", e),
}
use scim_v2::models::user::User;
let user_json = r#"{"schemas": ["urn:ietf:params:scim:schemas:core:2.0:User"], "userName": "jdoe@example.com"}"#;
match User::try_from(user_json) {
Ok(user) => println!("Successfully converted JSON to User: {:?}", user),
Err(e) => println!("Error converting from JSON to User: {}", e),
}
You can also use a built-in deserialize function if you’d prefer.
use scim_v2::models::user::User;
let user_json = r#"{"schemas": ["urn:ietf:params:scim:schemas:core:2.0:User"], "userName": "jdoe@example.com"}"#;
match User::deserialize(user_json) {
Ok(user) => println ! ("Deserialized User: {:?}", user),
Err(e) => println !("Deserialization error: {}", e),
}
For more examples and usage details, refer to the documentation of each function and struct.
Contributions are welcome! Please feel free to submit a Pull Request.