Function failingRebase [src]
Prototype
pub fn failingRebase(w: *Writer, preserve: usize, capacity: usize) Error!void
Parameters
w: *Writer
preserve: usize
capacity: usize
Possible Errors
See the Writer
implementation for detailed diagnostics.
Source
pub fn failingRebase(w: *Writer, preserve: usize, capacity: usize) Error!void {
_ = w;
_ = preserve;
_ = capacity;
return error.WriteFailed;
}