pub struct ActiveHyperlink {
pub params: String,
pub url: String,
pub terminator: String,
}Expand description
An active OSC 8 hyperlink tracked by AnsiCodeTracker.
Fields§
§params: StringHyperlink parameters (e.g. id or empty string).
url: StringThe target URL.
terminator: StringThe original terminator sequence (\x1b\\ or \x07).
Trait Implementations§
Source§impl Clone for ActiveHyperlink
impl Clone for ActiveHyperlink
Source§fn clone(&self) -> ActiveHyperlink
fn clone(&self) -> ActiveHyperlink
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 ActiveHyperlink
impl Debug for ActiveHyperlink
Source§impl PartialEq for ActiveHyperlink
impl PartialEq for ActiveHyperlink
Source§fn eq(&self, other: &ActiveHyperlink) -> bool
fn eq(&self, other: &ActiveHyperlink) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ActiveHyperlink
Auto Trait Implementations§
impl Freeze for ActiveHyperlink
impl RefUnwindSafe for ActiveHyperlink
impl Send for ActiveHyperlink
impl Sync for ActiveHyperlink
impl Unpin for ActiveHyperlink
impl UnsafeUnpin for ActiveHyperlink
impl UnwindSafe for ActiveHyperlink
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