pub struct TxStaticVars {
pub external_view_target_address_handle: RawHandle,
pub next_handle: RawHandle,
pub num_arguments: i32,
pub flags: StaticVarApiFlags,
pub scaling_factor_init: [bool; 64],
}
Fields§
§external_view_target_address_handle: RawHandle
§next_handle: RawHandle
§num_arguments: i32
§flags: StaticVarApiFlags
§scaling_factor_init: [bool; 64]
Vec of true/false, true if bit from handle = scaling_start + index is not empty
Trait Implementations§
Source§impl Debug for TxStaticVars
impl Debug for TxStaticVars
Auto Trait Implementations§
impl Freeze for TxStaticVars
impl RefUnwindSafe for TxStaticVars
impl Send for TxStaticVars
impl Sync for TxStaticVars
impl Unpin for TxStaticVars
impl UnwindSafe for TxStaticVars
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> InterpretableFrom<T> for T
impl<T> InterpretableFrom<T> for T
fn interpret_from(from: T, _context: &InterpreterContext) -> T
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