Crates.io | wrapper |
lib.rs | wrapper |
version | 0.1.1 |
source | src |
created_at | 2020-09-28 01:36:35.996941 |
updated_at | 2020-10-06 10:43:12.4152 |
description | A trait for types that wrap other types. |
homepage | |
repository | https://github.com/AljoschaMeyer/wrapper-rs |
max_upload_size | |
id | 293553 |
size | 13,578 |
A Wrapper
is a value which took ownership of some of the value, such that the wrapped value can later be retrieved again. Conceptually this is identical to the regular Into
trait, but that trait is hard to implement because of conflicts with the reflexive blanket implementation.
/// A type that wraps a value of type `Inner` that can be retrieved via `into_inner`.
pub trait Wrapper<Inner> {
/// Retrieve ownership of the wrapped value.
fn into_inner(self) -> Inner;
}
By default, this crate only provides implementations for types in core
. The alloc
feature enables implementations for types in alloc
, likewise std
for std
. Implementations for unstable types are enabled with the unstable
feature.