Provides a trait IntoOwned
and three enums Is<'a, T>
, Gyu<'a, T>
, and GyuMut<'a, T>
.
IntoOwned
associates a type with its owned variant.
In this experimental version, IntoOwned
is implemented only for primitive numeric types
(i8
, i16
, i32
, i64
, i128
, isize
, u8
, u16
, u32
, u64
, u128
, usize
, f32
, and f64
)
and their references.
Is<'a, T>
, Gyu<'a, T>
, and GyuMut<'a, T>
are clone-on-write smart pointers similar to Cow<'a, B>
.
These can be constructed from a type which is IntoOwned
.
See documentation for more.
no_std
To use into-owned
without the standard library,
disable the default std
feature in Cargo.toml
:
toml
[dependencies]
into-owned = { version = "0.3.0-alpha", default-features = false }
In this version, only IntoOwned::into_cow
method requires the standard library.
Licensed under either of
at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.