Tries to append an element to the right end of the ring buffer.
impl<T, H> DynRingBuf<T, H> where H: Allocator, { fn try_push_left(&mut self, val: T) -> Result<(), Errno> where T: Copy, }
The element to append.