Struct grpcio_sys::grpc_slice [−][src]
A grpc_slice s, if initialized, represents the byte range s.bytes[0..s.length-1].
It can have an associated ref count which has a destruction routine to be run when the ref count reaches zero (see grpc_slice_new() and grp_slice_unref()). Multiple grpc_slice values may share a ref count.
If the slice does not have a refcount, it represents an inlined small piece of data that is copied by value.
Fields
refcount: *mut grpc_slice_refcount
data: grpc_slice_grpc_slice_data
Trait Implementations
impl Clone for grpc_slice
[src]
fn clone(&self) -> grpc_slice
[src]
pub fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Copy for grpc_slice
[src]
impl Debug for grpc_slice
[src]
Auto Trait Implementations
impl RefUnwindSafe for grpc_slice
impl !Send for grpc_slice
impl !Sync for grpc_slice
impl Unpin for grpc_slice
impl UnwindSafe for grpc_slice
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T
[src]
pub fn clone_into(&self, target: &mut T)
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,