pub struct Answ<'a> {
pub answ_id: AnswId,
pub text_chars: &'a [u8],
}Expand description
answ() object (Table 48): the user input reply.
Fields§
§answ_id: AnswIdansw_id.
text_chars: &'a [u8]The answer text_char bytes — present only when answ_id == answer.
Trait Implementations§
impl<'a> Eq for Answ<'a>
Source§impl Serialize for Answ<'_>
impl Serialize for Answ<'_>
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 Answ<'a>
Auto Trait Implementations§
impl<'a> Freeze for Answ<'a>
impl<'a> RefUnwindSafe for Answ<'a>
impl<'a> Send for Answ<'a>
impl<'a> Sync for Answ<'a>
impl<'a> Unpin for Answ<'a>
impl<'a> UnsafeUnpin for Answ<'a>
impl<'a> UnwindSafe for Answ<'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