pub struct RenderInput {
pub slides: Vec<ResolvedSlide>,
pub media: HashMap<MediaId, MediaData>,
pub fonts: Vec<FontFile>,
pub metadata: Option<DocumentMetadata>,
}Expand description
Frozen, format-neutral input consumed by the rendering stage.
Fields§
§slides: Vec<ResolvedSlide>§media: HashMap<MediaId, MediaData>§fonts: Vec<FontFile>§metadata: Option<DocumentMetadata>Trait Implementations§
Source§impl Clone for RenderInput
impl Clone for RenderInput
Source§fn clone(&self) -> RenderInput
fn clone(&self) -> RenderInput
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 moreAuto Trait Implementations§
impl Freeze for RenderInput
impl RefUnwindSafe for RenderInput
impl Send for RenderInput
impl Sync for RenderInput
impl Unpin for RenderInput
impl UnsafeUnpin for RenderInput
impl UnwindSafe for RenderInput
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