pub struct Enq<'a> {
pub blind_answer: bool,
pub answer_text_length: u8,
pub text_chars: &'a [u8],
}Expand description
enq() object (Table 47): request a single user input.
Fields§
§blind_answer: boolblind_answer — when set, the user input is not displayed as typed.
answer_text_length: u8answer_text_length — expected answer length (0xFF = unknown).
text_chars: &'a [u8]The prompt text_char bytes (EN 300 468 Annex A).
Trait Implementations§
impl<'a> Eq for Enq<'a>
Source§impl Serialize for Enq<'_>
impl Serialize for Enq<'_>
Source§type Error = Error
type Error = Error
The error type this implementer returns (usually the same as the
corresponding
Parse impl, but need not be).Source§fn serialized_len(&self) -> usize
fn serialized_len(&self) -> usize
Number of bytes
serialize_into will write.impl<'a> StructuralPartialEq for Enq<'a>
Auto Trait Implementations§
impl<'a> Freeze for Enq<'a>
impl<'a> RefUnwindSafe for Enq<'a>
impl<'a> Send for Enq<'a>
impl<'a> Sync for Enq<'a>
impl<'a> Unpin for Enq<'a>
impl<'a> UnsafeUnpin for Enq<'a>
impl<'a> UnwindSafe for Enq<'a>
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