pub enum TargetChange {
Rc(HistoryIndex),
Mp(HistoryIndex),
Np(HistoryIndex),
}Expand description
Why the target represented by a History-Info entry differs from its predecessor.
Variants§
Rc(HistoryIndex)
Request-URI change for the same target user.
Mp(HistoryIndex)
Request-URI change to a different target user.
Np(HistoryIndex)
No Request-URI change.
Trait Implementations§
Source§impl Clone for TargetChange
impl Clone for TargetChange
Source§fn clone(&self) -> TargetChange
fn clone(&self) -> TargetChange
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for TargetChange
impl Debug for TargetChange
Source§impl PartialEq for TargetChange
impl PartialEq for TargetChange
Source§fn eq(&self, other: &TargetChange) -> bool
fn eq(&self, other: &TargetChange) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for TargetChange
impl StructuralPartialEq for TargetChange
Auto Trait Implementations§
impl Freeze for TargetChange
impl RefUnwindSafe for TargetChange
impl Send for TargetChange
impl Sync for TargetChange
impl Unpin for TargetChange
impl UnsafeUnpin for TargetChange
impl UnwindSafe for TargetChange
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