OvalSection

Trait OvalSection 

Source
pub trait OvalSection:
    'static
    + Copy
    + PartialEq
    + Send {
    const IS_OVER: IsOverFn;
}
Expand description

Types that may be used to describe the visible section of the Oval.

Required Associated Constants§

Source

const IS_OVER: IsOverFn

The function used to determine if a point is over the oval section widget.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§

Source§

impl OvalSection for Full

Source§

const IS_OVER: IsOverFn = {widget::primitive::shape::oval::is_over_widget as for<'a, 'b> fn(&'a graph::Container, [f64; 2], &'b theme::Theme) -> widget::IsOver}

Source§

impl OvalSection for Section

Source§

const IS_OVER: IsOverFn = {widget::primitive::shape::oval::is_over_section_widget as for<'a, 'b> fn(&'a graph::Container, [f64; 2], &'b theme::Theme) -> widget::IsOver}