#[repr(C)]pub struct switch_stream_handle_t {
pub read_function: switch_stream_handle_read_function_t,
pub write_function: switch_stream_handle_write_function_t,
pub raw_write_function: switch_stream_handle_raw_write_function_t,
pub data: *mut c_void,
pub end: *mut c_void,
pub data_size: switch_size_t,
pub data_len: switch_size_t,
pub alloc_len: switch_size_t,
pub alloc_chunk: switch_size_t,
pub param_event: *mut switch_event_t,
}Fields§
§read_function: switch_stream_handle_read_function_t§write_function: switch_stream_handle_write_function_t§raw_write_function: switch_stream_handle_raw_write_function_t§data: *mut c_void§end: *mut c_void§data_size: switch_size_t§data_len: switch_size_t§alloc_len: switch_size_t§alloc_chunk: switch_size_t§param_event: *mut switch_event_tAuto Trait Implementations§
impl Freeze for switch_stream_handle_t
impl RefUnwindSafe for switch_stream_handle_t
impl !Send for switch_stream_handle_t
impl !Sync for switch_stream_handle_t
impl Unpin for switch_stream_handle_t
impl UnsafeUnpin for switch_stream_handle_t
impl UnwindSafe for switch_stream_handle_t
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more