pub struct PreparedContentView<'content> {
pub publication: &'content PublicationSettings,
pub site_assets: &'content ResolvedSiteAssets,
pub posts: &'content [PreparedPost],
pub local_assets: &'content ResolvedLocalAssetStore,
pub warnings: &'content AssetResolutionWarnings,
}Expand description
Read-only compiler inputs for composition in a renderer.
Fields§
§publication: &'content PublicationSettings§site_assets: &'content ResolvedSiteAssets§posts: &'content [PreparedPost]§local_assets: &'content ResolvedLocalAssetStore§warnings: &'content AssetResolutionWarningsTrait Implementations§
Source§impl<'content> Clone for PreparedContentView<'content>
impl<'content> Clone for PreparedContentView<'content>
impl<'content> Copy for PreparedContentView<'content>
Auto Trait Implementations§
impl<'content> Freeze for PreparedContentView<'content>
impl<'content> RefUnwindSafe for PreparedContentView<'content>
impl<'content> Send for PreparedContentView<'content>
impl<'content> Sync for PreparedContentView<'content>
impl<'content> Unpin for PreparedContentView<'content>
impl<'content> UnsafeUnpin for PreparedContentView<'content>
impl<'content> UnwindSafe for PreparedContentView<'content>
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