pub type ExclusiveImageSurface = ImageSurface<Exclusive>;
Expand description

Exclusive state of ImageSurface

Aliased Type§

struct ExclusiveImageSurface {
    surface: ImageSurface,
    data_ptr: NonNull<u8>,
    width: i32,
    height: i32,
    stride: isize,
    surface_type: SurfaceType,
    _state: PhantomData<Exclusive>,
}

Fields§

§surface: ImageSurface§data_ptr: NonNull<u8>§width: i32§height: i32§stride: isize§surface_type: SurfaceType§_state: PhantomData<Exclusive>