pub struct RouteTableConfig {
pub show_handlers: bool,
pub show_tags: bool,
pub show_deprecated: bool,
pub max_width: usize,
pub title: Option<String>,
}Expand description
Configuration for route table display.
Fields§
§show_handlers: boolWhether to show handler names.
Whether to show tags.
show_deprecated: boolWhether to show deprecated routes.
max_width: usizeMaximum terminal width (0 = auto-detect or unlimited).
title: Option<String>Title for the table.
Trait Implementations§
Source§impl Clone for RouteTableConfig
impl Clone for RouteTableConfig
Source§fn clone(&self) -> RouteTableConfig
fn clone(&self) -> RouteTableConfig
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for RouteTableConfig
impl Debug for RouteTableConfig
Auto Trait Implementations§
impl Freeze for RouteTableConfig
impl RefUnwindSafe for RouteTableConfig
impl Send for RouteTableConfig
impl Sync for RouteTableConfig
impl Unpin for RouteTableConfig
impl UnsafeUnpin for RouteTableConfig
impl UnwindSafe for RouteTableConfig
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