ownable 1.0.0

Derive macro for structs/enums with Cow, which can convert Type<'a> to Type<'static> and more
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! These traits are the internals, which are used by the derive macros.
//!
//! There are intended to be always used qualified (in order to not conflict with the derived
//! functions and other traits/functions with an identical name).
//!
//! See [crate] for more information.
//!
//! If you don't rely on the derive macros then you may benefit from pulling in fewer dependencies
//! by relying directly on [ownable-core](https://docs.rs/ownable-core).

pub use ownable_core::{IntoOwned, ToBorrowed, ToOwned};