[][src]Trait lexical::FromBytesLossy

pub trait FromBytesLossy: FromBytes {
    fn from_bytes_lossy(bytes: &[u8], base: u8) -> Self;
fn try_from_bytes_lossy(bytes: &[u8], base: u8) -> Result<Self, Error>; }

Trait for floating-point types that can be parsed using lossy algorithms from bytes.

Required Methods

Deserialize from byte slice.

Error-checking deserialize from byte slice.

Implementations on Foreign Types

impl FromBytesLossy for f32
[src]

impl FromBytesLossy for f64
[src]

Implementors