pub struct RadialGradient(/* private fields */);
Implementations§
Methods from Deref<Target = Gradient>§
pub fn add_color_stop_rgb(&self, offset: f64, red: f64, green: f64, blue: f64)
pub fn add_color_stop_rgba( &self, offset: f64, red: f64, green: f64, blue: f64, alpha: f64, )
pub fn color_stop_count(&self) -> Result<isize, Error>
pub fn color_stop_rgba( &self, index: isize, ) -> Result<(f64, f64, f64, f64, f64), Error>
Methods from Deref<Target = Pattern>§
Sourcepub fn set_user_data<T: 'static>(
&self,
key: &'static UserDataKey<T>,
value: Rc<T>,
) -> Result<(), Error>
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
.
Sourcepub fn user_data<T: 'static>(
&self,
key: &'static UserDataKey<T>,
) -> Option<Rc<T>>
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.
Sourcepub fn user_data_ptr<T: 'static>(
&self,
key: &'static UserDataKey<T>,
) -> Option<NonNull<T>>
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.
Sourcepub fn remove_user_data<T: 'static>(
&self,
key: &'static UserDataKey<T>,
) -> Result<(), Error>
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.
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§
Source§impl AsRef<Gradient> for RadialGradient
impl AsRef<Gradient> for RadialGradient
Source§impl AsRef<Pattern> for RadialGradient
impl AsRef<Pattern> for RadialGradient
Source§impl Clone for RadialGradient
impl Clone for RadialGradient
Source§fn clone(&self) -> RadialGradient
fn clone(&self) -> RadialGradient
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 RadialGradient
impl Debug for RadialGradient
Source§impl Deref for RadialGradient
impl Deref for RadialGradient
Source§impl TryFrom<Gradient> for RadialGradient
impl TryFrom<Gradient> for RadialGradient
Auto Trait Implementations§
impl Freeze for RadialGradient
impl RefUnwindSafe for RadialGradient
impl !Send for RadialGradient
impl !Sync for RadialGradient
impl Unpin for RadialGradient
impl UnwindSafe for RadialGradient
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)