diff options
author | Valentin Popov <valentin@popov.link> | 2024-07-19 15:37:58 +0300 |
---|---|---|
committer | Valentin Popov <valentin@popov.link> | 2024-07-19 15:37:58 +0300 |
commit | a990de90fe41456a23e58bd087d2f107d321f3a1 (patch) | |
tree | 15afc392522a9e85dc3332235e311b7d39352ea9 /vendor/serde/src/private/mod.rs | |
parent | 3d48cd3f81164bbfc1a755dc1d4a9a02f98c8ddd (diff) | |
download | fparkan-a990de90fe41456a23e58bd087d2f107d321f3a1.tar.xz fparkan-a990de90fe41456a23e58bd087d2f107d321f3a1.zip |
Deleted vendor folder
Diffstat (limited to 'vendor/serde/src/private/mod.rs')
-rw-r--r-- | vendor/serde/src/private/mod.rs | 48 |
1 files changed, 0 insertions, 48 deletions
diff --git a/vendor/serde/src/private/mod.rs b/vendor/serde/src/private/mod.rs deleted file mode 100644 index 177f850..0000000 --- a/vendor/serde/src/private/mod.rs +++ /dev/null @@ -1,48 +0,0 @@ -#[cfg(not(no_serde_derive))] -pub mod de; -#[cfg(not(no_serde_derive))] -pub mod ser; - -// FIXME: #[cfg(doctest)] once https://github.com/rust-lang/rust/issues/67295 is fixed. -pub mod doc; - -pub use crate::lib::clone::Clone; -pub use crate::lib::convert::{From, Into}; -pub use crate::lib::default::Default; -pub use crate::lib::fmt::{self, Formatter}; -pub use crate::lib::marker::PhantomData; -pub use crate::lib::option::Option::{self, None, Some}; -pub use crate::lib::ptr; -pub use crate::lib::result::Result::{self, Err, Ok}; - -pub use self::string::from_utf8_lossy; - -#[cfg(any(feature = "alloc", feature = "std"))] -pub use crate::lib::{ToString, Vec}; - -#[cfg(not(no_core_try_from))] -pub use crate::lib::convert::TryFrom; - -mod string { - use crate::lib::*; - - #[cfg(any(feature = "std", feature = "alloc"))] - pub fn from_utf8_lossy(bytes: &[u8]) -> Cow<str> { - String::from_utf8_lossy(bytes) - } - - // The generated code calls this like: - // - // let value = &_serde::__private::from_utf8_lossy(bytes); - // Err(_serde::de::Error::unknown_variant(value, VARIANTS)) - // - // so it is okay for the return type to be different from the std case as long - // as the above works. - #[cfg(not(any(feature = "std", feature = "alloc")))] - pub fn from_utf8_lossy(bytes: &[u8]) -> &str { - // Three unicode replacement characters if it fails. They look like a - // white-on-black question mark. The user will recognize it as invalid - // UTF-8. - str::from_utf8(bytes).unwrap_or("\u{fffd}\u{fffd}\u{fffd}") - } -} |