pub unsafe extern "C" fn grpc_slice_malloc(
length: usize,
) -> grpc_sliceExpand description
Equivalent to grpc_slice_new(malloc(len), len, free), but saves one malloc() call. Aborts if malloc() fails.
pub unsafe extern "C" fn grpc_slice_malloc(
length: usize,
) -> grpc_sliceEquivalent to grpc_slice_new(malloc(len), len, free), but saves one malloc() call. Aborts if malloc() fails.