pub struct Decoder { /* private fields */ }Implementations§
Source§impl Decoder
impl Decoder
pub fn new() -> Self
pub fn decode_base64_to(&mut self, input: &str, dst: &mut String) -> Result<()>
pub fn decode_base64(&mut self, input: &str) -> Result<String>
pub fn decode_to(&mut self, input: &[u8], dst: &mut String) -> Result<()>
pub fn decode(&mut self, input: &[u8]) -> Result<String>
pub fn decode_impl<I, E>( &mut self, reader: RevBitReader<I>, dst: &mut String, ) -> Result<()>
Auto Trait Implementations§
impl Freeze for Decoder
impl RefUnwindSafe for Decoder
impl Send for Decoder
impl Sync for Decoder
impl Unpin for Decoder
impl UnsafeUnpin for Decoder
impl UnwindSafe for Decoder
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more