(
&self,
options: ByteInnerPaddingOptions,
vm: &VirtualMachine,
)
| 523 | } |
| 524 | |
| 525 | pub fn ljust( |
| 526 | &self, |
| 527 | options: ByteInnerPaddingOptions, |
| 528 | vm: &VirtualMachine, |
| 529 | ) -> PyResult<Vec<u8>> { |
| 530 | self._pad(options, AnyStr::py_ljust, vm) |
| 531 | } |
| 532 | |
| 533 | pub fn rjust( |
| 534 | &self, |
no test coverage detected