Trait snarkvm_console_algorithms::scalar::FromBytes  
source · pub trait FromBytes {
    fn read_le<R>(reader: R) -> Result<Self, Error>
    where
        R: Read,
        Self: Sized;
    fn from_bytes_le(bytes: &[u8]) -> Result<Self, Error>
    where
        Self: Sized,
    { ... }
}