pub struct RouteMap {
pub config_path: Option<String>,
pub generated_at: String,
pub mermaid: String,
}Expand description
The factory drawn as a graph.
Fields§
§config_path: Option<String>Which file it was generated from.
generated_at: StringWhen the configuration was read.
mermaid: StringMermaid flowchart source, ready to render.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for RouteMap
impl<'de> Deserialize<'de> for RouteMap
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
impl StructuralPartialEq for RouteMap
Auto Trait Implementations§
impl Freeze for RouteMap
impl RefUnwindSafe for RouteMap
impl Send for RouteMap
impl Sync for RouteMap
impl Unpin for RouteMap
impl UnsafeUnpin for RouteMap
impl UnwindSafe for RouteMap
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