pub struct NavigatorBehavior<Loc> where
Loc: Location, { /* private fields */ }
Implementations
sourceimpl<Loc> NavigatorBehavior<Loc> where
Loc: Location,
impl<Loc> NavigatorBehavior<Loc> where
Loc: Location,
pub fn default_for(
storage: &WidgetStorage
) -> StyledWidget<Component<NavigatorBehavior<Loc>>>
pub fn push(
&mut self,
location: Loc,
context: &Context<Component<NavigatorBehavior<Loc>>>
)
pub fn swap_to(
&mut self,
location: Loc,
context: &Context<Component<NavigatorBehavior<Loc>>>
)
pub fn pop_to_root(
&mut self,
context: &Context<Component<NavigatorBehavior<Loc>>>
)
pub fn pop(
&mut self,
context: &Context<Component<NavigatorBehavior<Loc>>>
) -> Option<Loc>
pub fn location(&self) -> &Loc
pub fn back_stack(&self) -> &[Loc]ⓘNotable traits for &'_ [u8]impl<'_> Read for &'_ [u8]impl<'_> Write for &'_ mut [u8]
Trait Implementations
sourceimpl<Loc> Behavior for NavigatorBehavior<Loc> where
Loc: Location,
impl<Loc> Behavior for NavigatorBehavior<Loc> where
Loc: Location,
type Content = Layout
type Event = Event
type Widgets = Widgets
fn classes() -> Option<Classes>
fn initialize(
component: &mut Component<NavigatorBehavior<Loc>>,
context: &Context<Component<NavigatorBehavior<Loc>>>
)
fn build_content(
&mut self,
builder: <<NavigatorBehavior<Loc> as Behavior>::Content as Content<NavigatorBehavior<Loc>>>::Builder,
_events: &EventMapper<NavigatorBehavior<Loc>>
) -> StyledWidget<<NavigatorBehavior<Loc> as Behavior>::Content>
fn receive_event(
component: &mut Component<NavigatorBehavior<Loc>>,
event: <NavigatorBehavior<Loc> as Behavior>::Event,
context: &Context<Component<NavigatorBehavior<Loc>>>
)
sourceimpl<Loc> Debug for NavigatorBehavior<Loc> where
Loc: Debug + Location,
impl<Loc> Debug for NavigatorBehavior<Loc> where
Loc: Debug + Location,
sourceimpl<Loc> Default for NavigatorBehavior<Loc> where
Loc: Location,
impl<Loc> Default for NavigatorBehavior<Loc> where
Loc: Location,
sourcefn default() -> NavigatorBehavior<Loc>
fn default() -> NavigatorBehavior<Loc>
Returns the “default value” for a type. Read more
Auto Trait Implementations
impl<Loc> RefUnwindSafe for NavigatorBehavior<Loc> where
Loc: RefUnwindSafe,
impl<Loc> Send for NavigatorBehavior<Loc>
impl<Loc> Sync for NavigatorBehavior<Loc>
impl<Loc> Unpin for NavigatorBehavior<Loc> where
Loc: Unpin,
impl<Loc> UnwindSafe for NavigatorBehavior<Loc> where
Loc: UnwindSafe,
Blanket Implementations
sourceimpl<S, D, Swp, Dwp, T> AdaptInto<D, Swp, Dwp, T> for S where
T: FloatComponent,
Swp: WhitePoint,
Dwp: WhitePoint,
D: AdaptFrom<S, Swp, Dwp, T>,
impl<S, D, Swp, Dwp, T> AdaptInto<D, Swp, Dwp, T> for S where
T: FloatComponent,
Swp: WhitePoint,
Dwp: WhitePoint,
D: AdaptFrom<S, Swp, Dwp, T>,
sourcefn adapt_into_using<M>(self, method: M) -> D where
M: TransformMatrix<Swp, Dwp, T>,
fn adapt_into_using<M>(self, method: M) -> D where
M: TransformMatrix<Swp, Dwp, T>,
Convert the source color to the destination color using the specified method Read more
sourcefn adapt_into(self) -> D
fn adapt_into(self) -> D
Convert the source color to the destination color using the bradford method by default Read more
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T, U> IntoColor<U> for T where
U: FromColor<T>,
impl<T, U> IntoColor<U> for T where
U: FromColor<T>,
sourcefn into_color(self) -> U
fn into_color(self) -> U
Convert into T with values clamped to the color defined bounds Read more
sourceimpl<T, U> IntoColorUnclamped<U> for T where
U: FromColorUnclamped<T>,
impl<T, U> IntoColorUnclamped<U> for T where
U: FromColorUnclamped<T>,
sourcefn into_color_unclamped(self) -> U
fn into_color_unclamped(self) -> U
Convert into T. The resulting color might be invalid in its color space Read more
sourceimpl<T, U> TryIntoColor<U> for T where
U: TryFromColor<T>,
impl<T, U> TryIntoColor<U> for T where
U: TryFromColor<T>,
sourcefn try_into_color(self) -> Result<U, OutOfBounds<U>>
fn try_into_color(self) -> Result<U, OutOfBounds<U>>
Convert into T, returning ok if the color is inside of its defined
range, otherwise an OutOfBounds
error is returned which contains
the unclamped color. Read more
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more