pub struct RouteComponents {
pub page: Option<ComponentIR>,
pub layout: Option<ComponentIR>,
pub loading: Option<ComponentIR>,
pub error: Option<ComponentIR>,
pub template: Option<ComponentIR>,
pub not_found: Option<ComponentIR>,
}
Fields§
§page: Option<ComponentIR>
§layout: Option<ComponentIR>
§loading: Option<ComponentIR>
§error: Option<ComponentIR>
§template: Option<ComponentIR>
§not_found: Option<ComponentIR>
Implementations§
Trait Implementations§
Source§impl Clone for RouteComponents
impl Clone for RouteComponents
Source§fn clone(&self) -> RouteComponents
fn clone(&self) -> RouteComponents
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 RouteComponents
impl Debug for RouteComponents
Source§impl<'de> Deserialize<'de> for RouteComponents
impl<'de> Deserialize<'de> for RouteComponents
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for RouteComponents
impl PartialEq for RouteComponents
Source§impl Serialize for RouteComponents
impl Serialize for RouteComponents
impl StructuralPartialEq for RouteComponents
Auto Trait Implementations§
impl Freeze for RouteComponents
impl RefUnwindSafe for RouteComponents
impl Send for RouteComponents
impl Sync for RouteComponents
impl Unpin for RouteComponents
impl UnwindSafe for RouteComponents
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