Tries to append a copyable element to the vector.
impl<T, H> Vec<T, H> where H: Allocator, { fn try_push(&mut self, val: T) -> Result<(), Errno> where T: Copy, }
The element to append.