mirror of
https://github.com/lennart-k/rustical.git
synced 2025-12-13 14:42:30 +00:00
16 lines
361 B
Rust
16 lines
361 B
Rust
#![warn(clippy::all, clippy::pedantic, clippy::nursery)]
|
|
#![allow(clippy::missing_errors_doc)]
|
|
pub mod error;
|
|
pub mod extensions;
|
|
pub mod header;
|
|
pub mod namespace;
|
|
pub mod privileges;
|
|
pub mod resource;
|
|
pub mod resources;
|
|
pub mod xml;
|
|
pub use error::Error;
|
|
|
|
pub trait Principal: std::fmt::Debug + Clone + Send + Sync + 'static {
|
|
fn get_id(&self) -> &str;
|
|
}
|