pub(crate) static DESTINATION: &str = "org.freedesktop.secrets";
pub(crate) static PATH: &str = "/org/freedesktop/secrets";
pub trait Unlockable: serde::Serialize + zbus::zvariant::Type {}
impl<'a> Unlockable for zbus::zvariant::ObjectPath<'a> {}
impl Unlockable for zbus::zvariant::OwnedObjectPath {}
impl<'a> Unlockable for &zbus::zvariant::ObjectPath<'a> {}
impl Unlockable for &zbus::zvariant::OwnedObjectPath {}
mod collection;
mod item;
mod prompt;
mod properties;
mod secret;
mod service;
mod session;
pub use collection::Collection;
pub use item::Item;
pub(crate) use prompt::Prompt;
pub(crate) use properties::Properties;
pub use secret::Secret;
pub use service::Service;
pub use session::Session;