pub enum HyperlinkTarget {
External(String),
Internal(String),
}Expand description
A CellHyperlink’s target.
Variants§
External(String)
An external URL (r:id, resolved through this worksheet’s own .rels part,
TargetMode="External" — same shape as word-ooxml’s Hyperlink::External).
Internal(String)
A location within the same workbook (location, e.g. "Feuil2!A1" or a defined name) — no
relationship needed, same shape as word-ooxml’s Hyperlink::Internal.
Trait Implementations§
Source§impl Clone for HyperlinkTarget
impl Clone for HyperlinkTarget
Source§fn clone(&self) -> HyperlinkTarget
fn clone(&self) -> HyperlinkTarget
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 HyperlinkTarget
impl Debug for HyperlinkTarget
Source§impl PartialEq for HyperlinkTarget
impl PartialEq for HyperlinkTarget
impl StructuralPartialEq for HyperlinkTarget
Auto Trait Implementations§
impl Freeze for HyperlinkTarget
impl RefUnwindSafe for HyperlinkTarget
impl Send for HyperlinkTarget
impl Sync for HyperlinkTarget
impl Unpin for HyperlinkTarget
impl UnsafeUnpin for HyperlinkTarget
impl UnwindSafe for HyperlinkTarget
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