Subtracts another integer from this one and returns the value if no overflow occurred.
impl Wsize {
fn checked_sub(self, other: usize) -> Option<Wsize>
}| Name | Description |
|---|---|
| other | The integer that will be subtracted from this one. |
Returns the difference if no overflow occurred, None otherwise.