pub enum ResolvedLink {
Hyperlink {
href: String,
},
Slashlink {
link: Slashlink,
href: String,
},
}Expand description
This enum represents the resolved value that may be returned by a Resolver and is provided to a Transcluder
Variants§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ResolvedLink
impl RefUnwindSafe for ResolvedLink
impl Send for ResolvedLink
impl Sync for ResolvedLink
impl Unpin for ResolvedLink
impl UnwindSafe for ResolvedLink
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