pub struct SolidPattern(_);
Implementations§
Methods from Deref<Target = Pattern>§
pub fn set_user_data<T>(
&self,
key: &'static UserDataKey<T>,
value: Rc<T>
) -> Result<(), Error>where
T: 'static,
pub fn set_user_data<T>( &self, key: &'static UserDataKey<T>, value: Rc<T> ) -> Result<(), Error>where T: 'static,
Attach user data to self
for the given key
.
pub fn user_data<T>(&self, key: &'static UserDataKey<T>) -> Option<Rc<T>>where
T: 'static,
pub fn user_data<T>(&self, key: &'static UserDataKey<T>) -> Option<Rc<T>>where T: 'static,
Return the user data previously attached to self
with the given key
, if any.
pub fn user_data_ptr<T>(
&self,
key: &'static UserDataKey<T>
) -> Option<NonNull<T>>where
T: 'static,
pub fn user_data_ptr<T>( &self, key: &'static UserDataKey<T> ) -> Option<NonNull<T>>where T: 'static,
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.
pub fn remove_user_data<T>(
&self,
key: &'static UserDataKey<T>
) -> Result<(), Error>where
T: 'static,
pub fn remove_user_data<T>( &self, key: &'static UserDataKey<T> ) -> Result<(), Error>where T: 'static,
Unattached 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 type_(&self) -> PatternType
pub fn reference_count(&self) -> isize
pub fn set_extend(&self, extend: Extend)
pub fn extend(&self) -> Extend
pub fn set_filter(&self, filter: Filter)
pub fn filter(&self) -> Filter
pub fn set_matrix(&self, matrix: Matrix)
pub fn matrix(&self) -> Matrix
pub fn status(&self) -> Result<(), Error>
Trait Implementations§
§impl AsRef<Pattern> for SolidPattern
impl AsRef<Pattern> for SolidPattern
§impl Clone for SolidPattern
impl Clone for SolidPattern
§fn clone(&self) -> SolidPattern
fn clone(&self) -> SolidPattern
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 more§impl Debug for SolidPattern
impl Debug for SolidPattern
§impl Deref for SolidPattern
impl Deref for SolidPattern
§impl Display for SolidPattern
impl Display for SolidPattern
Auto Trait Implementations§
impl RefUnwindSafe for SolidPattern
impl !Send for SolidPattern
impl !Sync for SolidPattern
impl Unpin for SolidPattern
impl UnwindSafe for SolidPattern
Blanket Implementations§
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
§impl<T> Pointable for T
impl<T> Pointable for T
§impl<T> RoundFrom<T> for T
impl<T> RoundFrom<T> for T
§fn round_from(x: T) -> T
fn round_from(x: T) -> T
Performs the conversion.
§impl<T, U> RoundInto<U> for Twhere
U: RoundFrom<T>,
impl<T, U> RoundInto<U> for Twhere U: RoundFrom<T>,
§fn round_into(self) -> U
fn round_into(self) -> U
Performs the conversion.