Enum StaticPathsCow
enum StaticPathsCow<'a> {
Borrowed(&'a StaticPaths),
Owned(StaticPaths),
}Variants§
Borrowed(&'a StaticPaths)
Owned(StaticPaths)
Methods from Deref<Target = StaticPaths>§
Trait Implementations§
§impl Deref for StaticPathsCow<'_>
impl Deref for StaticPathsCow<'_>
Auto Trait Implementations§
impl<'a> Freeze for StaticPathsCow<'a>
impl<'a> RefUnwindSafe for StaticPathsCow<'a>
impl<'a> Send for StaticPathsCow<'a>
impl<'a> Sync for StaticPathsCow<'a>
impl<'a> Unpin for StaticPathsCow<'a>
impl<'a> UnwindSafe for StaticPathsCow<'a>
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