pub struct CustomDitherPattern {
pub pattern: DitherPattern,
pub order: i32,
pub name: String,
}
Fields§
§pattern: DitherPattern
§order: i32
§name: String
Trait Implementations§
Source§impl Clone for CustomDitherPattern
impl Clone for CustomDitherPattern
Source§fn clone(&self) -> CustomDitherPattern
fn clone(&self) -> CustomDitherPattern
Returns a duplicate 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 CustomDitherPattern
impl Debug for CustomDitherPattern
Source§impl<'de> Deserialize<'de> for CustomDitherPattern
impl<'de> Deserialize<'de> for CustomDitherPattern
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for CustomDitherPattern
impl PartialEq for CustomDitherPattern
Source§impl Serialize for CustomDitherPattern
impl Serialize for CustomDitherPattern
impl Eq for CustomDitherPattern
impl StructuralPartialEq for CustomDitherPattern
Auto Trait Implementations§
impl Freeze for CustomDitherPattern
impl RefUnwindSafe for CustomDitherPattern
impl Send for CustomDitherPattern
impl Sync for CustomDitherPattern
impl Unpin for CustomDitherPattern
impl UnwindSafe for CustomDitherPattern
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