Struct style_traits::PinchZoomFactor
source · pub struct PinchZoomFactor(pub(crate) f32);
Expand description
Represents a mobile style pinch zoom factor. TODO(gw): Once WR supports pinch zoom, use a type directly from webrender_api.
Tuple Fields§
§0: f32
Implementations§
Trait Implementations§
source§impl Clone for PinchZoomFactor
impl Clone for PinchZoomFactor
source§fn clone(&self) -> PinchZoomFactor
fn clone(&self) -> PinchZoomFactor
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 PinchZoomFactor
impl Debug for PinchZoomFactor
source§impl<'de> Deserialize<'de> for PinchZoomFactor
impl<'de> Deserialize<'de> for PinchZoomFactor
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 MallocSizeOf for PinchZoomFactor
impl MallocSizeOf for PinchZoomFactor
source§fn size_of(&self, ops: &mut MallocSizeOfOps) -> usize
fn size_of(&self, ops: &mut MallocSizeOfOps) -> usize
Measure the heap usage of all descendant heap-allocated structures, but
not the space taken up by the value itself.
source§impl PartialEq for PinchZoomFactor
impl PartialEq for PinchZoomFactor
source§fn eq(&self, other: &PinchZoomFactor) -> bool
fn eq(&self, other: &PinchZoomFactor) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for PinchZoomFactor
impl Serialize for PinchZoomFactor
impl Copy for PinchZoomFactor
impl StructuralPartialEq for PinchZoomFactor
Auto Trait Implementations§
impl Freeze for PinchZoomFactor
impl RefUnwindSafe for PinchZoomFactor
impl Send for PinchZoomFactor
impl Sync for PinchZoomFactor
impl Unpin for PinchZoomFactor
impl UnwindSafe for PinchZoomFactor
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