pub fn mvwinsstr<S: Into<String>>(
    handle: WINDOW,
    origin: Origin,
    str: S
) -> Result<(), NCurseswError>
Expand description

Insert a string (as many characters as will fit on the line) before the character at origin. All characters to the right of the cursor are shifted right, with the rightmost characters on the line being lost. The cursor position does not change (after moving to origin).