Skip to main content

RichMediaAnnotation

Struct RichMediaAnnotation 

Source
pub struct RichMediaAnnotation {
    pub rect: Rect,
    pub content: RichMediaContent,
    pub settings: RichMediaSettings,
    pub title: Option<String>,
    pub flags: AnnotationFlags,
    pub contents: Option<String>,
}
Expand description

A RichMedia annotation for interactive content.

Per Adobe Supplement to ISO 32000-1 (Extension Level 3). Note: Flash support is deprecated in modern viewers.

Fields§

§rect: Rect

Bounding rectangle

§content: RichMediaContent

Content (assets and configurations)

§settings: RichMediaSettings

Settings (activation, presentation)

§title: Option<String>

Annotation title

§flags: AnnotationFlags

Annotation flags

§contents: Option<String>

Contents/description

Implementations§

Source§

impl RichMediaAnnotation

Source

pub fn new(rect: Rect, content: RichMediaContent) -> Self

Create a new RichMedia annotation.

Source

pub fn video(rect: Rect, name: impl Into<String>, data: Vec<u8>) -> Self

Create a RichMedia annotation with a single video asset.

Source

pub fn with_settings(self, settings: RichMediaSettings) -> Self

Set the settings.

Source

pub fn with_activation(self, activation: RichMediaActivation) -> Self

Set activation condition.

Source

pub fn with_deactivation(self, deactivation: RichMediaDeactivation) -> Self

Set deactivation condition.

Source

pub fn with_window(self, window: RichMediaWindow) -> Self

Set window type.

Source

pub fn with_toolbar(self, toolbar: bool) -> Self

Set toolbar visibility.

Source

pub fn with_title(self, title: impl Into<String>) -> Self

Set title.

Source

pub fn with_contents(self, contents: impl Into<String>) -> Self

Set description/contents.

Source

pub fn with_flags(self, flags: AnnotationFlags) -> Self

Set annotation flags.

Source

pub fn add_asset(self, asset: RichMediaAsset) -> Self

Add an asset to the content.

Source

pub fn build(&self, _page_refs: &[ObjectRef]) -> HashMap<String, Object>

Build the annotation dictionary.

Source

pub fn content(&self) -> &RichMediaContent

Get the content reference.

Trait Implementations§

Source§

impl Clone for RichMediaAnnotation

Source§

fn clone(&self) -> RichMediaAnnotation

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for RichMediaAnnotation

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl From<RichMediaAnnotation> for Annotation

Source§

fn from(richmedia: RichMediaAnnotation) -> Self

Converts to this type from the input type.

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> IntoEither for T

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

impl<T> Pointable for T

Source§

const ALIGN: usize

The alignment of pointer.
Source§

type Init = T

The type for initializers.
Source§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
Source§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
Source§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
Source§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<T> Ungil for T
where T: Send,