pub enum Access {
Open,
ReadOnly,
Protected,
NonInteractive,
}Expand description
XFA access attribute values (XFA 3.3 §6.1, field/exclGroup/
subform elements). Controls interactive mutability of a node and,
for containers, of all contained fields.
Variants§
Open
Default: the field is interactive and writable.
ReadOnly
Visible, value selectable/copyable, but not writable.
Protected
Not interactive at all (no focus, no writes).
NonInteractive
Rendered like a regular field but excluded from interaction.
Implementations§
Trait Implementations§
impl Copy for Access
impl Eq for Access
impl StructuralPartialEq for Access
Auto Trait Implementations§
impl Freeze for Access
impl RefUnwindSafe for Access
impl Send for Access
impl Sync for Access
impl Unpin for Access
impl UnsafeUnpin for Access
impl UnwindSafe for Access
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