pub enum HyperlinkAction {
NextSlide,
PrevSlide,
FirstSlide,
LastSlide,
EndShow,
}Expand description
Navigation action types for hyperlinks — these require no relationship ID.
Variants§
NextSlide
Navigate to the next slide.
PrevSlide
Navigate to the previous slide.
FirstSlide
Navigate to the first slide.
LastSlide
Navigate to the last slide.
EndShow
End the slide show.
Implementations§
Source§impl HyperlinkAction
impl HyperlinkAction
Sourcepub fn as_ppaction(&self) -> &'static str
pub fn as_ppaction(&self) -> &'static str
Return the OOXML ppaction:// URI for this navigation action.
Trait Implementations§
Source§impl Clone for HyperlinkAction
impl Clone for HyperlinkAction
Source§fn clone(&self) -> HyperlinkAction
fn clone(&self) -> HyperlinkAction
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 HyperlinkAction
impl Debug for HyperlinkAction
Source§impl PartialEq for HyperlinkAction
impl PartialEq for HyperlinkAction
Source§fn eq(&self, other: &HyperlinkAction) -> bool
fn eq(&self, other: &HyperlinkAction) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for HyperlinkAction
Auto Trait Implementations§
impl Freeze for HyperlinkAction
impl RefUnwindSafe for HyperlinkAction
impl Send for HyperlinkAction
impl Sync for HyperlinkAction
impl Unpin for HyperlinkAction
impl UnsafeUnpin for HyperlinkAction
impl UnwindSafe for HyperlinkAction
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