#[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: usize,
    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: usize§own_buf: u8§is_persistent: u8§refcount: c_intTrait Implementations§
Source§impl Clone for _php_stream_bucket
 
impl Clone for _php_stream_bucket
Source§fn clone(&self) -> _php_stream_bucket
 
fn clone(&self) -> _php_stream_bucket
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
 
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from 
source. Read moreSource§impl Debug for _php_stream_bucket
 
impl Debug for _php_stream_bucket
impl Copy for _php_stream_bucket
Auto Trait Implementations§
impl Freeze for _php_stream_bucket
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§
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