#[repr(C)]pub struct fz_device_container_stack {
pub scissor: fz_rect,
pub type_: c_int,
pub user: c_int,
}
Expand description
Devices can keep track of containers (clips/masks/groups/tiles)
as they go to save callers having to do it.
Fields§
§scissor: fz_rect
§type_: c_int
§user: c_int
Trait Implementations§
Source§impl Clone for fz_device_container_stack
impl Clone for fz_device_container_stack
Source§fn clone(&self) -> fz_device_container_stack
fn clone(&self) -> fz_device_container_stack
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for fz_device_container_stack
impl Debug for fz_device_container_stack
impl Copy for fz_device_container_stack
Auto Trait Implementations§
impl Freeze for fz_device_container_stack
impl RefUnwindSafe for fz_device_container_stack
impl Send for fz_device_container_stack
impl Sync for fz_device_container_stack
impl Unpin for fz_device_container_stack
impl UnwindSafe for fz_device_container_stack
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