pub struct SurfacePattern(/* private fields */);
Implementations§
Source§impl SurfacePattern
impl SurfacePattern
pub fn create(surface: &Surface) -> SurfacePattern
pub fn get_surface(&self) -> Surface
Methods from Deref<Target = Pattern>§
Sourcepub fn set_user_data<T: 'static>(
&self,
key: &'static UserDataKey<T>,
value: Rc<T>,
)
pub fn set_user_data<T: 'static>( &self, key: &'static UserDataKey<T>, value: Rc<T>, )
Attach user data to self
for the given key
.
Sourcepub fn get_user_data<T: 'static>(
&self,
key: &'static UserDataKey<T>,
) -> Option<Rc<T>>
pub fn get_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.
Sourcepub fn get_user_data_ptr<T: 'static>(
&self,
key: &'static UserDataKey<T>,
) -> Option<NonNull<T>>
pub fn get_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.
Sourcepub fn remove_user_data<T: 'static>(&self, key: &'static UserDataKey<T>)
pub fn remove_user_data<T: 'static>(&self, key: &'static UserDataKey<T>)
Unattach from self
the user data associated with key
, if any.
If there is no other Rc
strong reference, the data is destroyed.
pub fn to_raw_none(&self) -> *mut cairo_pattern_t
pub fn get_type(&self) -> PatternType
pub fn ensure_status(&self)
pub fn status(&self) -> Status
pub fn get_reference_count(&self) -> isize
pub fn set_extend(&self, extend: Extend)
pub fn get_extend(&self) -> Extend
pub fn set_filter(&self, filter: Filter)
pub fn get_filter(&self) -> Filter
pub fn set_matrix(&self, matrix: Matrix)
pub fn get_matrix(&self) -> Matrix
Trait Implementations§
Source§impl Clone for SurfacePattern
impl Clone for SurfacePattern
Source§fn clone(&self) -> SurfacePattern
fn clone(&self) -> SurfacePattern
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 SurfacePattern
impl Debug for SurfacePattern
Source§impl Deref for SurfacePattern
impl Deref for SurfacePattern
Source§impl Display for SurfacePattern
impl Display for SurfacePattern
Auto Trait Implementations§
impl Freeze for SurfacePattern
impl RefUnwindSafe for SurfacePattern
impl !Send for SurfacePattern
impl !Sync for SurfacePattern
impl Unpin for SurfacePattern
impl UnwindSafe for SurfacePattern
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