Trait libhelium::prelude::NavigationRailExt
source · pub trait NavigationRailExt: IsA<NavigationRail> + Sealed + 'static {
// Provided methods
fn stack(&self) -> Stack { ... }
fn set_stack(&self, value: &Stack) { ... }
fn orientation(&self) -> Orientation { ... }
fn set_orientation(&self, value: Orientation) { ... }
fn hides_labels(&self) -> bool { ... }
fn set_hide_labels(&self, value: bool) { ... }
fn connect_stack_notify<F: Fn(&Self) + 'static>(
&self,
f: F,
) -> SignalHandlerId { ... }
fn connect_orientation_notify<F: Fn(&Self) + 'static>(
&self,
f: F,
) -> SignalHandlerId { ... }
fn connect_hide_labels_notify<F: Fn(&Self) + 'static>(
&self,
f: F,
) -> SignalHandlerId { ... }
}
Expand description
Provided Methods§
fn stack(&self) -> Stack
fn set_stack(&self, value: &Stack)
fn orientation(&self) -> Orientation
fn set_orientation(&self, value: Orientation)
fn hides_labels(&self) -> bool
fn set_hide_labels(&self, value: bool)
fn connect_stack_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId
fn connect_orientation_notify<F: Fn(&Self) + 'static>( &self, f: F, ) -> SignalHandlerId
fn connect_hide_labels_notify<F: Fn(&Self) + 'static>( &self, f: F, ) -> SignalHandlerId
Object Safety§
This trait is not object safe.