#[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: usize,
pub progress_max: usize,
}
Fields§
§func: php_stream_notification_func
§dtor: Option<unsafe extern "C" fn(notifier: *mut php_stream_notifier)>
§ptr: zval
§mask: c_int
§progress: usize
§progress_max: usize
Trait 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 copy 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 Default for _php_stream_notifier
impl Default for _php_stream_notifier
impl 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