pub struct SubStrList<'a> {
pub ids: &'a [ItemIdLe],
}
Expand description
LF_SUBSTR_LIST
- A list of substrings
Fields§
§ids: &'a [ItemIdLe]
Trait Implementations§
Source§impl<'a> Clone for SubStrList<'a>
impl<'a> Clone for SubStrList<'a>
Source§fn clone(&self) -> SubStrList<'a>
fn clone(&self) -> SubStrList<'a>
Returns a copy 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<'a> Debug for SubStrList<'a>
impl<'a> Debug for SubStrList<'a>
Source§impl<'a> Parse<'a> for SubStrList<'a>
impl<'a> Parse<'a> for SubStrList<'a>
Source§fn from_parser(p: &mut Parser<'a>) -> Result<Self, ParserError>
fn from_parser(p: &mut Parser<'a>) -> Result<Self, ParserError>
Parses an instance of
Self
from a Parser
.
This allows the caller to detect which bytes were not consumed at the end of the input.Auto Trait Implementations§
impl<'a> Freeze for SubStrList<'a>
impl<'a> RefUnwindSafe for SubStrList<'a>
impl<'a> Send for SubStrList<'a>
impl<'a> Sync for SubStrList<'a>
impl<'a> Unpin for SubStrList<'a>
impl<'a> UnwindSafe for SubStrList<'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