Trait aprs_encode::stack_str::PackArrayString[][src]

pub trait PackArrayString {
    fn pack_into<const SIZE: usize>(
        &self,
        s: &mut ArrayString<SIZE>
    ) -> Result<(), PackError>; }
Expand description

Trait for structs that can pack themselves into the end of a ArrayString

Required methods

Try to append self to the end of a ArrayString

Implementors