Enum freya_devtools::Route
source · pub enum Route {
TreeElementsTab {},
TreeStyleTab {
node_id: String,
},
TreeLayoutTab {
node_id: String,
},
PageNotFound {},
}
Variants§
Trait Implementations§
source§impl Routable for Routewhere
Self: Clone,
impl Routable for Routewhere Self: Clone,
source§fn render<'a>(&self, cx: &'a ScopeState, level: usize) -> Element<'a>
fn render<'a>(&self, cx: &'a ScopeState, level: usize) -> Element<'a>
Render the route at the given level
§fn is_child_of(&self, other: &Self) -> bool
fn is_child_of(&self, other: &Self) -> bool
Checks if this route is a child of the given route. Read more
§fn flatten_site_map<'a>(
) -> FlatMap<Iter<'a, SiteMapSegment>, Vec<Vec<SegmentType, Global>, Global>, fn(_: &SiteMapSegment) -> Vec<Vec<SegmentType, Global>, Global>>
fn flatten_site_map<'a>( ) -> FlatMap<Iter<'a, SiteMapSegment>, Vec<Vec<SegmentType, Global>, Global>, fn(_: &SiteMapSegment) -> Vec<Vec<SegmentType, Global>, Global>>
Returns a flattened version of [
Self::SITE_MAP
].§fn static_routes() -> Vec<Self, Global>
fn static_routes() -> Vec<Self, Global>
Gets a list of all the static routes.
Example static route:
#[route("/static/route")]
Auto Trait Implementations§
impl RefUnwindSafe for Route
impl Send for Route
impl Sync for Route
impl Unpin for Route
impl UnwindSafe for Route
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