(iter: I)
| 524 | /// Create a `Buffer` instance by storing the boolean values into the buffer |
| 525 | impl FromIterator<bool> for Buffer { |
| 526 | fn from_iter<I>(iter: I) -> Self |
| 527 | where |
| 528 | I: IntoIterator<Item = bool>, |
| 529 | { |
| 530 | MutableBuffer::from_iter(iter).into() |
| 531 | } |
| 532 | } |
| 533 | |
| 534 | impl std::ops::Deref for Buffer { |
nothing calls this directly
no test coverage detected