pub struct ScaledBlue {
pub position: ScaledWidth,
pub overshoot: ScaledWidth,
pub zones: BlueZones,
pub is_active: bool,
}Expand description
A scaled alignment zone.
Fields§
§position: ScaledWidthScaled position of the blue.
overshoot: ScaledWidthScaled overshoot for the blue.
zones: BlueZonesActive zones for this blue.
is_active: boolTrue if the blue is active.
Trait Implementations§
Source§impl Clone for ScaledBlue
impl Clone for ScaledBlue
Source§fn clone(&self) -> ScaledBlue
fn clone(&self) -> ScaledBlue
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 ScaledBlue
impl Debug for ScaledBlue
Source§impl Default for ScaledBlue
impl Default for ScaledBlue
Source§fn default() -> ScaledBlue
fn default() -> ScaledBlue
Returns the “default value” for a type. Read more
Source§impl PartialEq for ScaledBlue
impl PartialEq for ScaledBlue
impl Copy for ScaledBlue
impl Eq for ScaledBlue
impl StructuralPartialEq for ScaledBlue
Auto Trait Implementations§
impl Freeze for ScaledBlue
impl RefUnwindSafe for ScaledBlue
impl Send for ScaledBlue
impl Sync for ScaledBlue
impl Unpin for ScaledBlue
impl UnsafeUnpin for ScaledBlue
impl UnwindSafe for ScaledBlue
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