#[repr(C)]pub struct php_stream_mmap_range {
pub offset: usize,
pub length: usize,
pub mode: php_stream_mmap_access_t,
pub mapped: *mut c_char,
}
Fields§
§offset: usize
§length: usize
§mode: php_stream_mmap_access_t
§mapped: *mut c_char
Trait Implementations§
Source§impl Clone for php_stream_mmap_range
impl Clone for php_stream_mmap_range
Source§fn clone(&self) -> php_stream_mmap_range
fn clone(&self) -> php_stream_mmap_range
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 Debug for php_stream_mmap_range
impl Debug for php_stream_mmap_range
Source§impl Default for php_stream_mmap_range
impl Default for php_stream_mmap_range
impl Copy for php_stream_mmap_range
Auto Trait Implementations§
impl Freeze for php_stream_mmap_range
impl RefUnwindSafe for php_stream_mmap_range
impl !Send for php_stream_mmap_range
impl !Sync for php_stream_mmap_range
impl Unpin for php_stream_mmap_range
impl UnwindSafe for php_stream_mmap_range
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