Sha256: 37b204775e572396515477b393ce793b2579de48e5971e6f596ba3723c489fd6

Contents?: true

Size: 1.47 KB

Versions: 8

Compression:

Stored size: 1.47 KB

Contents

#[cfg(not(no_serde_derive))]
pub mod de;
#[cfg(not(no_serde_derive))]
pub mod ser;

pub mod size_hint;

// FIXME: #[cfg(doctest)] once https://github.com/rust-lang/rust/issues/67295 is fixed.
pub mod doc;

pub use lib::clone::Clone;
pub use lib::convert::{From, Into};
pub use lib::default::Default;
pub use lib::fmt::{self, Formatter};
pub use lib::marker::PhantomData;
pub use lib::option::Option::{self, None, Some};
pub use lib::ptr;
pub use lib::result::Result::{self, Err, Ok};

pub use self::string::from_utf8_lossy;

#[cfg(any(feature = "alloc", feature = "std"))]
pub use lib::{ToString, Vec};

#[cfg(not(no_core_try_from))]
pub use lib::convert::TryFrom;

mod string {
    use 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}")
    }
}

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
wasmtime-9.0.1 ./ext/cargo-vendor/serde-1.0.163/src/private/mod.rs
wasmtime-8.0.0 ./ext/cargo-vendor/serde-1.0.160/src/private/mod.rs
wasmtime-7.0.0 ./ext/cargo-vendor/serde-1.0.159/src/private/mod.rs
wasmtime-6.0.1 ./ext/cargo-vendor/serde-1.0.152/src/private/mod.rs
wasmtime-6.0.0 ./ext/cargo-vendor/serde-1.0.152/src/private/mod.rs
wasmtime-5.0.0 ./ext/cargo-vendor/serde-1.0.152/src/private/mod.rs
wasmtime-0.4.1 ./ext/cargo-vendor/serde-1.0.149/src/private/mod.rs
wasmtime-0.4.0 ./ext/cargo-vendor/serde-1.0.149/src/private/mod.rs