pub fn encode_without_checksum_to_fmt<T: AsRef<[u5]>>(
    fmt: &mut dyn Write,
    hrp: Hrp,
    data: T
) -> Result<Result, Error>
Expand description

Encodes a bech32 payload without a checksum to a writer (fmt::Write).

This method is intended for implementing traits from std::fmt.

Deviations from standard.

  • No length limits are enforced for the data part.