-
Notifications
You must be signed in to change notification settings - Fork 264
Expand file tree
/
Copy pathlib.rs
More file actions
43 lines (35 loc) · 1.14 KB
/
lib.rs
File metadata and controls
43 lines (35 loc) · 1.14 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
// This file is part of ICU4X. For terms of use, please see the file
// called LICENSE at the top level of the ICU4X source tree
// (online at: https://github.com/unicode-org/icu4x/blob/main/LICENSE ).
// https://github.com/unicode-org/icu4x/blob/main/documents/process/boilerplate.md#library-annotations
#![cfg_attr(not(any(test, doc)), no_std)]
#![cfg_attr(
not(test),
deny(
clippy::indexing_slicing,
clippy::unwrap_used,
clippy::expect_used,
clippy::panic,
)
)]
#![warn(missing_docs)]
//! This crate provides [`ZeroFrom`], a trait for converting types in a zero-copy way.
//!
//! See the documentation of [`ZeroFrom`] for more details.
// The lifetimes here are important for safety and explicitly writing
// them out is good even when redundant
#![allow(clippy::needless_lifetimes)]
#[cfg(feature = "alloc")]
extern crate alloc;
mod macro_impls;
mod zero_from;
mod zf_transparent;
#[cfg(feature = "derive")]
pub use zerofrom_derive::ZeroFrom;
pub use crate::zero_from::ZeroFrom;
#[cfg(feature = "alloc")]
#[doc(hidden)] // for macros
pub mod internal {
pub use alloc::boxed::Box;
pub use alloc::rc::Rc;
}