Skip to main content

buffer_core/
shared.rs

1use core_types::BufferId;
2
3#[derive(Clone, Copy, Debug, Eq, PartialEq)]
4pub struct SharedBufferDescriptor {
5    pub buffer_id: BufferId,
6    pub len: usize,
7}