pub struct List<'a>(pub Menu<'a>);Expand description
list() object (Table 51) — byte-identical to menu() except for its tag
pair (9F 88 0C last / 9F 88 0D more). Wraps a Menu; the inner
Menu::more selects _last vs _more.
Tuple Fields§
§0: Menu<'a>The shared menu/list body.
Trait Implementations§
impl<'a> Eq for List<'a>
Source§impl Serialize for List<'_>
impl Serialize for List<'_>
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 List<'a>
Auto Trait Implementations§
impl<'a> Freeze for List<'a>
impl<'a> RefUnwindSafe for List<'a>
impl<'a> Send for List<'a>
impl<'a> Sync for List<'a>
impl<'a> Unpin for List<'a>
impl<'a> UnsafeUnpin for List<'a>
impl<'a> UnwindSafe for List<'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