to_bytestring

Function to_bytestring 

Source
fn to_bytestring(bytes: &[u8]) -> String
Examples found in repository?
crates/competitive/src/tools/coding.rs (line 362)
358    fn serialize_bytestr(&self) -> String {
359        let mut bytes = vec![];
360        self.serialize(&mut bytes);
361        let bytes = huffman_coding(&bytes);
362        to_bytestring(&bytes)
363    }