#[non_exhaustive]pub enum HeaderAnsi {
LicenseText,
InfoBeforeText,
InfoAfterText,
CompiledCodeText,
}Expand description
Identifier for a TSetupHeader AnsiString field.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
LicenseText
License text shown on the wizard’s license page (raw bytes; caller decodes per the relevant language codepage).
InfoBeforeText
Info text shown before installation.
InfoAfterText
Info text shown after installation.
CompiledCodeText
Compiled PascalScript bytecode blob — opaque from this crate’s perspective; the IFPS container is not parsed.
Trait Implementations§
Source§impl Clone for HeaderAnsi
impl Clone for HeaderAnsi
Source§fn clone(&self) -> HeaderAnsi
fn clone(&self) -> HeaderAnsi
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for HeaderAnsi
impl Debug for HeaderAnsi
Source§impl Hash for HeaderAnsi
impl Hash for HeaderAnsi
Source§impl PartialEq for HeaderAnsi
impl PartialEq for HeaderAnsi
impl Copy for HeaderAnsi
impl Eq for HeaderAnsi
impl StructuralPartialEq for HeaderAnsi
Auto Trait Implementations§
impl Freeze for HeaderAnsi
impl RefUnwindSafe for HeaderAnsi
impl Send for HeaderAnsi
impl Sync for HeaderAnsi
impl Unpin for HeaderAnsi
impl UnsafeUnpin for HeaderAnsi
impl UnwindSafe for HeaderAnsi
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