Struct phper_sys::_php_stream_bucket
source · [−]#[repr(C)]pub struct _php_stream_bucket {
pub next: *mut php_stream_bucket,
pub prev: *mut php_stream_bucket,
pub brigade: *mut php_stream_bucket_brigade,
pub buf: *mut c_char,
pub buflen: size_t,
pub own_buf: u8,
pub is_persistent: u8,
pub refcount: c_int,
}
Fields
next: *mut php_stream_bucket
prev: *mut php_stream_bucket
brigade: *mut php_stream_bucket_brigade
buf: *mut c_char
buflen: size_t
own_buf: u8
is_persistent: u8
refcount: c_int
Trait Implementations
sourceimpl Clone for _php_stream_bucket
impl Clone for _php_stream_bucket
sourcefn clone(&self) -> _php_stream_bucket
fn clone(&self) -> _php_stream_bucket
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for _php_stream_bucket
impl Debug for _php_stream_bucket
impl Copy for _php_stream_bucket
Auto Trait Implementations
impl RefUnwindSafe for _php_stream_bucket
impl !Send for _php_stream_bucket
impl !Sync for _php_stream_bucket
impl Unpin for _php_stream_bucket
impl UnwindSafe for _php_stream_bucket
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more