pub enum RealizedHref {
PathBuf(PathBuf),
Url(Url),
}
Expand description
An href that has been realized to a path or a url.
Variants§
Trait Implementations§
Source§impl Debug for RealizedHref
impl Debug for RealizedHref
Source§impl From<&str> for RealizedHref
impl From<&str> for RealizedHref
Source§fn from(s: &str) -> RealizedHref
fn from(s: &str) -> RealizedHref
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for RealizedHref
impl RefUnwindSafe for RealizedHref
impl Send for RealizedHref
impl Sync for RealizedHref
impl Unpin for RealizedHref
impl UnwindSafe for RealizedHref
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