DEV Community

Discussion on: Implementing Base64 from scratch in Rust

Collapse
 
minigamedev profile image
Mossa

I'm guessing it should be this

    fn get_padding_char(&self) -> char {
        '='
    }
Enter fullscreen mode Exit fullscreen mode
Collapse
 
tiemen profile image
Tiemen

Yep, that was the idea! Somehow I missed copying this one too. Thanks again 👌