#![doc = crate::_DOC_SYS_MEM_VIEW_BORROW!()] #![doc = crate::_doc!(modules: crate::sys::mem; borrow)]
#![doc = crate::_doc!(flat:"sys")]
#![doc = crate::_doc!(extends: borrow)]
crate::mods_in! {
mod _reexport_core;
#[cfg(feature = "alloc")]
mod _reexport_alloc;
mod backing; mod maybe; mod ownership; }
crate::mods_out! { _mods {
pub use super::{
backing::Backing,
maybe::MaybeOwned,
ownership::Ownership,
};
}
_reexports {
pub use super::_reexport_core::*;
#[cfg(feature = "alloc")]
pub use super::_reexport_alloc::*;
}
}