(
&self,
options: ByteInnerPaddingOptions,
vm: &VirtualMachine,
)
| 515 | } |
| 516 | |
| 517 | pub fn center( |
| 518 | &self, |
| 519 | options: ByteInnerPaddingOptions, |
| 520 | vm: &VirtualMachine, |
| 521 | ) -> PyResult<Vec<u8>> { |
| 522 | self._pad(options, AnyStr::py_center, vm) |
| 523 | } |
| 524 | |
| 525 | pub fn ljust( |
| 526 | &self, |
no test coverage detected