pub enum HyperlinkType {
External(String),
Internal(String),
Email(String),
}Expand description
Type of hyperlink target.
Variants§
External(String)
External URL (e.g., “https://example.com” or “file:///path”).
Internal(String)
Internal sheet reference (e.g., “Sheet2!A1”).
Email(String)
Email link (e.g., “mailto:[email protected]”).
Trait Implementations§
Source§impl Clone for HyperlinkType
impl Clone for HyperlinkType
Source§fn clone(&self) -> HyperlinkType
fn clone(&self) -> HyperlinkType
Returns a duplicate of the value. Read more
1.0.0 · 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 HyperlinkType
impl Debug for HyperlinkType
Source§impl PartialEq for HyperlinkType
impl PartialEq for HyperlinkType
impl StructuralPartialEq for HyperlinkType
Auto Trait Implementations§
impl Freeze for HyperlinkType
impl RefUnwindSafe for HyperlinkType
impl Send for HyperlinkType
impl Sync for HyperlinkType
impl Unpin for HyperlinkType
impl UnwindSafe for HyperlinkType
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