clepsydre-rebind 0.1.0

Safe bindings for libclepsydre
// Take a look at the license at the top of the repository in the LICENSE file.

// rustdoc-stripper-ignore-next
//! Traits intended for creating custom types.

pub mod calendar;
pub mod collection;
pub mod event;
pub mod manager;
pub mod subscription;

// rustdoc-stripper-ignore-next
/// Traits intended for blanket imports.
pub mod prelude {
    #[doc(hidden)]
    pub use gdk::subclass::prelude::*;

    pub use super::{
        calendar::{CalendarClassExt, CalendarImpl, CalendarImplExt},
        collection::{CollectionClassExt, CollectionImpl, CollectionImplExt},
        event::{EventClassExt, EventImpl, EventImplExt},
        manager::{ManagerClassExt, ManagerImpl, ManagerImplExt},
        subscription::{SubscriptionClassExt, SubscriptionImpl, SubscriptionImplExt},
    };
}