/// A type used to mark that a struct owns the object(s) it contains,
/// so it has the sole references to them.
/// A type used to mark that the object(s) a struct contains are shared,
/// so there may be other references to them.
/// A type that marks what type of ownership a struct has over the object(s)
/// it contains; specifically, either [`Owned`] or [`Shared`].
///
/// This trait is sealed and not meant to be implemented outside of the this
/// crate.