pub struct MorphBitmap {
pub bitmap_id: u16,
pub matrix: Matrix,
pub morph_matrix: Matrix,
pub repeating: bool,
pub smoothed: bool,
}
Fields§
§bitmap_id: u16
§matrix: Matrix
§morph_matrix: Matrix
§repeating: bool
§smoothed: bool
Trait Implementations§
Source§impl Clone for MorphBitmap
impl Clone for MorphBitmap
Source§fn clone(&self) -> MorphBitmap
fn clone(&self) -> MorphBitmap
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 MorphBitmap
impl Debug for MorphBitmap
Source§impl<'de> Deserialize<'de> for MorphBitmap
impl<'de> Deserialize<'de> for MorphBitmap
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 Hash for MorphBitmap
impl Hash for MorphBitmap
Source§impl Ord for MorphBitmap
impl Ord for MorphBitmap
Source§fn cmp(&self, other: &MorphBitmap) -> Ordering
fn cmp(&self, other: &MorphBitmap) -> Ordering
1.21.0 · 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 MorphBitmap
impl PartialEq for MorphBitmap
Source§impl PartialOrd for MorphBitmap
impl PartialOrd for MorphBitmap
Source§impl Serialize for MorphBitmap
impl Serialize for MorphBitmap
impl Copy for MorphBitmap
impl Eq for MorphBitmap
impl StructuralPartialEq for MorphBitmap
Auto Trait Implementations§
impl Freeze for MorphBitmap
impl RefUnwindSafe for MorphBitmap
impl Send for MorphBitmap
impl Sync for MorphBitmap
impl Unpin for MorphBitmap
impl UnwindSafe for MorphBitmap
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