pub struct DrawingCacheKey {
pub commands: String,
}Expand description
Cache key for drawing paths
Fields§
§commands: StringDrawing commands as string
Trait Implementations§
Source§impl Clone for DrawingCacheKey
impl Clone for DrawingCacheKey
Source§fn clone(&self) -> DrawingCacheKey
fn clone(&self) -> DrawingCacheKey
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 DrawingCacheKey
impl Debug for DrawingCacheKey
impl Eq for DrawingCacheKey
Source§impl Hash for DrawingCacheKey
impl Hash for DrawingCacheKey
Source§impl Ord for DrawingCacheKey
impl Ord for DrawingCacheKey
Source§fn cmp(&self, other: &DrawingCacheKey) -> Ordering
fn cmp(&self, other: &DrawingCacheKey) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for DrawingCacheKey
impl PartialEq for DrawingCacheKey
Source§fn eq(&self, other: &DrawingCacheKey) -> bool
fn eq(&self, other: &DrawingCacheKey) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for DrawingCacheKey
impl PartialOrd for DrawingCacheKey
impl StructuralPartialEq for DrawingCacheKey
Auto Trait Implementations§
impl Freeze for DrawingCacheKey
impl RefUnwindSafe for DrawingCacheKey
impl Send for DrawingCacheKey
impl Sync for DrawingCacheKey
impl Unpin for DrawingCacheKey
impl UnsafeUnpin for DrawingCacheKey
impl UnwindSafe for DrawingCacheKey
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§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more