Copy the contents of `src` into `dst`
(dst: &mut Self, src: &Self)
| 77 | |
| 78 | /// Copy the contents of `src` into `dst` |
| 79 | pub fn assign(dst: &mut Self, src: &Self) { |
| 80 | unsafe { BNAssignDataBuffer(dst.0, src.0) } |
| 81 | } |
| 82 | |
| 83 | /// Concat the contents of `src` into `dst` |
| 84 | pub fn append(dst: &mut Self, src: &Self) { |