#[repr(C)]pub struct _php_stream_notifier {
pub func: php_stream_notification_func,
pub dtor: Option<unsafe extern "C" fn(notifier: *mut php_stream_notifier)>,
pub ptr: zval,
pub mask: c_int,
pub progress: size_t,
pub progress_max: size_t,
}Fields§
§func: php_stream_notification_func§dtor: Option<unsafe extern "C" fn(notifier: *mut php_stream_notifier)>§ptr: zval§mask: c_int§progress: size_t§progress_max: size_tTrait Implementations§
Source§impl Clone for _php_stream_notifier
impl Clone for _php_stream_notifier
Source§fn clone(&self) -> _php_stream_notifier
fn clone(&self) -> _php_stream_notifier
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 moreimpl Copy for _php_stream_notifier
Auto Trait Implementations§
impl Freeze for _php_stream_notifier
impl RefUnwindSafe for _php_stream_notifier
impl !Send for _php_stream_notifier
impl !Sync for _php_stream_notifier
impl Unpin for _php_stream_notifier
impl UnwindSafe for _php_stream_notifier
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