mirror of
https://github.com/lennart-k/rustical.git
synced 2025-12-13 21:42:34 +00:00
5 lines
160 B
Rust
5 lines
160 B
Rust
pub trait PrincipalUri: 'static + Clone + Send + Sync {
|
|
fn principal_collection(&self) -> String;
|
|
fn principal_uri(&self, principal: &str) -> String;
|
|
}
|