pub struct ScrollIndicatorSpec {
pub colors: WearColors,
pub alpha: f32,
}Expand description
How a ScrollIndicator is drawn.
Fields§
§colors: WearColors§alpha: f32How visible the whole indicator is.
Wear fades this to zero two seconds after the last scroll, so a
screenshot of a settled screen shows no indicator at all. That is a
policy, not geometry, and an app with an always-on indicator sets this
to 1.0 and never animates it — which is why the widget takes an alpha
rather than owning a timer.
Implementations§
Trait Implementations§
Source§impl Clone for ScrollIndicatorSpec
impl Clone for ScrollIndicatorSpec
Source§fn clone(&self) -> ScrollIndicatorSpec
fn clone(&self) -> ScrollIndicatorSpec
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 moreimpl Copy for ScrollIndicatorSpec
Source§impl Debug for ScrollIndicatorSpec
impl Debug for ScrollIndicatorSpec
Source§impl Default for ScrollIndicatorSpec
impl Default for ScrollIndicatorSpec
Source§impl PartialEq for ScrollIndicatorSpec
impl PartialEq for ScrollIndicatorSpec
impl StructuralPartialEq for ScrollIndicatorSpec
Auto Trait Implementations§
impl Freeze for ScrollIndicatorSpec
impl RefUnwindSafe for ScrollIndicatorSpec
impl Send for ScrollIndicatorSpec
impl Sync for ScrollIndicatorSpec
impl Unpin for ScrollIndicatorSpec
impl UnsafeUnpin for ScrollIndicatorSpec
impl UnwindSafe for ScrollIndicatorSpec
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