pub struct ConstExpr<'a> { /* private fields */ }
Expand description
Represents an initialization expression.
Implementations§
Source§impl<'a> ConstExpr<'a>
impl<'a> ConstExpr<'a>
Sourcepub fn new(reader: BinaryReader<'a>) -> ConstExpr<'a>
pub fn new(reader: BinaryReader<'a>) -> ConstExpr<'a>
Constructs a new ConstExpr
from the given data and offset.
Sourcepub fn get_binary_reader(&self) -> BinaryReader<'a>
pub fn get_binary_reader(&self) -> BinaryReader<'a>
Gets a binary reader for the initialization expression.
Sourcepub fn get_operators_reader(&self) -> OperatorsReader<'a>
pub fn get_operators_reader(&self) -> OperatorsReader<'a>
Gets an operators reader for the initialization expression.
Trait Implementations§
Source§impl<'a> FromReader<'a> for ConstExpr<'a>
impl<'a> FromReader<'a> for ConstExpr<'a>
Source§fn from_reader(
reader: &mut BinaryReader<'a>,
) -> Result<ConstExpr<'a>, BinaryReaderError>
fn from_reader( reader: &mut BinaryReader<'a>, ) -> Result<ConstExpr<'a>, BinaryReaderError>
Attempts to read
Self
from the provided binary reader, returning an
error if it is unable to do so.impl Eq for ConstExpr<'_>
Auto Trait Implementations§
impl<'a> Freeze for ConstExpr<'a>
impl<'a> RefUnwindSafe for ConstExpr<'a>
impl<'a> Send for ConstExpr<'a>
impl<'a> Sync for ConstExpr<'a>
impl<'a> Unpin for ConstExpr<'a>
impl<'a> UnwindSafe for ConstExpr<'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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more