(channels: [u32; 5])
| 46 | |
| 47 | impl CFListChannels { |
| 48 | pub fn new(channels: [u32; 5]) -> Self { |
| 49 | CFListChannels(channels) |
| 50 | } |
| 51 | |
| 52 | pub fn from_slice(channels: &[u32]) -> Result<Self> { |
| 53 | let mut channels_array: [u32; 5] = [0; 5]; |
nothing calls this directly
no test coverage detected