pub struct InlineSite2<'a> {
pub fixed: &'a InlineSite2Fixed,
pub binary_annotations: &'a [u8],
}
Expand description
S_INLINESITE2
Fields§
§fixed: &'a InlineSite2Fixed
§binary_annotations: &'a [u8]
an array of compressed binary annotations.
Trait Implementations§
Source§impl<'a> Clone for InlineSite2<'a>
impl<'a> Clone for InlineSite2<'a>
Source§fn clone(&self) -> InlineSite2<'a>
fn clone(&self) -> InlineSite2<'a>
Returns a duplicate 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 InlineSite2<'a>
impl<'a> Debug for InlineSite2<'a>
Source§impl<'a> Parse<'a> for InlineSite2<'a>
impl<'a> Parse<'a> for InlineSite2<'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 InlineSite2<'a>
impl<'a> RefUnwindSafe for InlineSite2<'a>
impl<'a> Send for InlineSite2<'a>
impl<'a> Sync for InlineSite2<'a>
impl<'a> Unpin for InlineSite2<'a>
impl<'a> UnwindSafe for InlineSite2<'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