Struct cairo::Device

source ·
#[repr(transparent)]
pub struct Device(_);

Implementations§

source§

impl Device

source

pub unsafe fn from_raw_none(ptr: *mut cairo_device_t) -> Device

source

pub unsafe fn from_raw_borrow(ptr: *mut cairo_device_t) -> Borrowed<Device>

source

pub unsafe fn from_raw_full(ptr: *mut cairo_device_t) -> Device

source

pub fn to_raw_none(&self) -> *mut cairo_device_t

source

pub fn create<P: AsRef<Path>>(filename: P) -> Option<Device>

source

pub fn from_recording_surface( &self, surface: &RecordingSurface ) -> Result<(), Error>

source

pub fn mode(&self) -> ScriptMode

source

pub fn set_mode(&self, mode: ScriptMode)

source

pub fn surface_create( &self, content: Content, width: f64, height: f64 ) -> Result<Surface, Error>

source

pub fn surface_create_for_target( &self, target: impl AsRef<Surface> ) -> Result<Surface, Error>

source

pub fn write_comment(&self, comment: &str)

source

pub fn finish(&self)

source

pub fn flush(&self)

source

pub fn type_(&self) -> DeviceType

source

pub fn acquire(&self) -> Result<DeviceAcquireGuard<'_>, Error>

source

pub fn observer_elapsed(&self) -> f64

source

pub fn observer_fill_elapsed(&self) -> f64

source

pub fn observer_glyphs_elapsed(&self) -> f64

source

pub fn observer_mask_elapsed(&self) -> f64

source

pub fn observer_paint_elapsed(&self) -> f64

source

pub fn observer_stroke_elapsed(&self) -> f64

source

pub fn debug_cap_xrender_version( &self, _major_version: i32, _minor_version: i32 )

source

pub fn debug_get_precision(&self) -> i32

source

pub fn debug_set_precision(&self, _precision: i32)

source

pub fn status(&self) -> Result<(), Error>

source

pub fn set_user_data<T: 'static>( &self, key: &'static UserDataKey<T>, value: Rc<T> ) -> Result<(), Error>

Attach user data to self for the given key.

source

pub fn user_data<T: 'static>( &self, key: &'static UserDataKey<T> ) -> Option<Rc<T>>

Return the user data previously attached to self with the given key, if any.

source

pub fn user_data_ptr<T: 'static>( &self, key: &'static UserDataKey<T> ) -> Option<NonNull<T>>

Return the user data previously attached to self with the given key, if any, without incrementing the reference count.

The pointer is valid when it is returned from this method, until the cairo object that self represents is destroyed or remove_user_data or set_user_data is called with the same key.

source

pub fn remove_user_data<T: 'static>( &self, key: &'static UserDataKey<T> ) -> Result<(), Error>

Unattached from self the user data associated with key, if any. If there is no other Rc strong reference, the data is destroyed.

source§

impl Device

source

pub fn connection(&self) -> XCBConnection

source

pub fn debug_cap_xshm_version(&self, major_version: i32, minor_version: i32)

Trait Implementations§

source§

impl Clone for Device

source§

fn clone(&self) -> Device

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for Device

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Display for Device

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Drop for Device

source§

fn drop(&mut self)

Executes the destructor for this type. Read more
source§

impl From<Device> for Value

source§

fn from(v: Device) -> Self

Converts to this type from the input type.
source§

impl FromGlibPtrBorrow<*mut cairo_device_t> for Device

source§

unsafe fn from_glib_borrow(ptr: *mut cairo_device_t) -> Borrowed<Device>

Safety Read more
source§

impl FromGlibPtrFull<*mut cairo_device_t> for Device

source§

unsafe fn from_glib_full(ptr: *mut cairo_device_t) -> Device

Safety Read more
source§

impl FromGlibPtrNone<*mut cairo_device_t> for Device

source§

unsafe fn from_glib_none(ptr: *mut cairo_device_t) -> Device

Safety Read more
source§

impl<'a> FromValue<'a> for &'a Device

§

type Checker = GenericValueTypeOrNoneChecker<&'a Device>

Value type checker.
source§

unsafe fn from_value(value: &'a Value) -> Self

Get the contained value from a Value. Read more
source§

impl<'a> FromValue<'a> for Device

§

type Checker = GenericValueTypeOrNoneChecker<Device>

Value type checker.
source§

unsafe fn from_value(value: &'a Value) -> Self

Get the contained value from a Value. Read more
source§

impl IntoGlibPtr<*mut cairo_device_t> for Device

source§

unsafe fn into_glib_ptr(self) -> *mut cairo_device_t

Transfer: full.
source§

impl StaticType for Device

source§

fn static_type() -> Type

Returns the type identifier of Self.
source§

impl<'a> ToGlibPtr<'a, *mut cairo_device_t> for Device

§

type Storage = PhantomData<&'a Device>

source§

fn to_glib_none(&'a self) -> Stash<'a, *mut cairo_device_t, Self>

Transfer: none. Read more
source§

fn to_glib_full(&self) -> *mut cairo_device_t

Transfer: full. Read more
source§

fn to_glib_container(&'a self) -> Stash<'a, P, Self>

Transfer: container. Read more
source§

impl ToValue for Device

source§

fn to_value(&self) -> Value

Convert a value to a Value.
source§

fn value_type(&self) -> Type

Returns the type identifer of self. Read more
source§

impl ToValueOptional for Device

source§

fn to_value_optional(s: Option<&Self>) -> Value

Convert an Option to a Value.
source§

impl ValueType for Device

§

type Type = Device

Type to get the Type from. Read more
source§

impl ValueTypeOptional for Device

Auto Trait Implementations§

§

impl RefUnwindSafe for Device

§

impl !Send for Device

§

impl !Sync for Device

§

impl Unpin for Device

§

impl UnwindSafe for Device

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> IntoClosureReturnValue for Twhere T: Into<Value>,

source§

impl<T> StaticTypeExt for Twhere T: StaticType,

source§

fn ensure_type()

Ensures that the type has been registered with the type system.
source§

impl<T> ToOwned for Twhere T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T> ToString for Twhere T: Display + ?Sized,

source§

default fn to_string(&self) -> String

Converts the given value to a String. Read more
source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T> TryFromClosureReturnValue for Twhere T: for<'a> FromValue<'a> + StaticType + 'static,

source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<'a, T, C, E> FromValueOptional<'a> for Twhere T: FromValue<'a, Checker = C>, C: ValueTypeChecker<Error = ValueTypeMismatchOrNoneError<E>>, E: Error + Send + 'static,