pub enum Jump {
Next(Url),
Landing(Vec<u8>),
}
Expand description
Jump is the result of a connection.
A redirect can direct to the Next URL, othewise
Landing has the page content as Vec
Variants§
Next(Url)
The redirect location as Url.
Landing(Vec<u8>)
The content of the destination URL, as vector of chars.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Jump
impl RefUnwindSafe for Jump
impl Send for Jump
impl Sync for Jump
impl Unpin for Jump
impl UnwindSafe for Jump
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