Struct heed_types::OwnedType

source ·
pub struct OwnedType<T>(_);
Expand description

Describes a type that is totally owned (doesn’t hold any reference to the original slice).

If you need to store a type that doesn’t depends on any memory alignment and that can be big it is recommended to use the UnalignedType.

The CowType is recommended for borrowed types (types that holds references to the original slice).

To store slices, you must look at the CowSlice, OwnedSlice or UnalignedSlice types.

Trait Implementations§

Auto Trait Implementations§

Blanket Implementations§

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.