pub struct MountFact {
pub prefix: String,
pub target: String,
}Expand description
One use(prefix, target)-style router mount observed in a source file.
Fields§
§prefix: StringPath prefix the target is mounted under; empty for bare use(x).
target: StringModule specifier of the mounted router.
Trait Implementations§
impl Eq for MountFact
impl StructuralPartialEq for MountFact
Auto Trait Implementations§
impl Freeze for MountFact
impl RefUnwindSafe for MountFact
impl Send for MountFact
impl Sync for MountFact
impl Unpin for MountFact
impl UnsafeUnpin for MountFact
impl UnwindSafe for MountFact
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