Struct phper_sys::_php_stream_filter
source · [−]#[repr(C)]pub struct _php_stream_filter {
pub fops: *const php_stream_filter_ops,
pub abstract_: zval,
pub next: *mut php_stream_filter,
pub prev: *mut php_stream_filter,
pub is_persistent: c_int,
pub chain: *mut php_stream_filter_chain,
pub buffer: php_stream_bucket_brigade,
pub res: *mut zend_resource,
}
Fields
fops: *const php_stream_filter_ops
abstract_: zval
next: *mut php_stream_filter
prev: *mut php_stream_filter
is_persistent: c_int
chain: *mut php_stream_filter_chain
buffer: php_stream_bucket_brigade
res: *mut zend_resource
Trait Implementations
sourceimpl Clone for _php_stream_filter
impl Clone for _php_stream_filter
sourcefn clone(&self) -> _php_stream_filter
fn clone(&self) -> _php_stream_filter
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
impl Copy for _php_stream_filter
Auto Trait Implementations
impl RefUnwindSafe for _php_stream_filter
impl !Send for _php_stream_filter
impl !Sync for _php_stream_filter
impl Unpin for _php_stream_filter
impl UnwindSafe for _php_stream_filter
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