pub struct PageJob {
pub path: PathBuf,
pub destination: Option<String>,
pub destination_directory: Option<String>,
}Expand description
One spilled page for a worker to render: the spill path plus the metadata
that does not survive the XML round-trip (mirrors post::SpilledPage
minus the parent-only placeholder flags).
Fields§
§path: PathBuf§destination: Option<String>§destination_directory: Option<String>Trait Implementations§
Source§impl<'de> Deserialize<'de> for PageJob
impl<'de> Deserialize<'de> for PageJob
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for PageJob
impl RefUnwindSafe for PageJob
impl Send for PageJob
impl Sync for PageJob
impl Unpin for PageJob
impl UnsafeUnpin for PageJob
impl UnwindSafe for PageJob
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