pub struct Input {
pub profile: ProfileId,
pub version: CanonVersion,
pub installed_at: String,
pub docs_scratch: Option<Utf8PathBuf>,
pub reserve: Vec<String>,
pub writing_style: Option<WritingStyle>,
pub evidence: Evidence,
}Expand description
What a landing was asked to render.
Fields§
§profile: ProfileIdThe profile to project.
version: CanonVersionThe version of the binary doing the rendering.
installed_at: StringThe install timestamp to record, carried forward where one exists.
docs_scratch: Option<Utf8PathBuf>The documentation scratch to record.
reserve: Vec<String>Paths to record under reserved: in the instance declaration.
writing_style: Option<WritingStyle>The writing-style selection to record in the declaration.
evidence: EvidenceWhat the caller observed about the target.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Input
impl RefUnwindSafe for Input
impl Send for Input
impl Sync for Input
impl Unpin for Input
impl UnsafeUnpin for Input
impl UnwindSafe for Input
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