pub struct DynBuffer<'z> {
pub bytes: &'z mut [&'z mut [u8]],
pub sample_size: u8,
pub sample_rate: u32,
}
The result of pulling from a DynamicSource
.
Fields
bytes | Raw bytes of sample data.
TODO Any might be more appropriate, particularly for externally-defined sample formats.
It's very easy for us to get confused by one of those.
|
sample_size | Size of individual samples, in bits.
Note that it's impossible to tell what actual format
|
sample_rate | |
Keyboard shortcuts
- ?
- Show this help dialog
- S
- Focus the search field
- ⇤
- Move up in search results
- ⇥
- Move down in search results
- ⏎
- Go to active search result
Search tricks
Prefix searches with a type followed by a colon (e.g.
fn:
) to restrict the search to a given type.
Accepted types are: fn
, mod
,
struct
, enum
,
trait
, typedef
(or
tdef
).