pub trait NavigationPageImpl: WidgetImpl {
// Provided methods
fn hidden(&self) { ... }
fn hiding(&self) { ... }
fn showing(&self) { ... }
fn shown(&self) { ... }
}
Available on crate feature
v1_4
only.Provided Methods§
Called when the navigation view transition has been completed and the page is fully hidden.
Sourcefn hiding(&self)
fn hiding(&self)
Called when the page starts hiding at the beginning of the navigation view transition.
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.