Struct i_slint_compiler::expression_tree::BindingAnalysis
source · [−]pub struct BindingAnalysis {
pub is_in_binding_loop: Cell<bool>,
pub is_const: bool,
pub no_external_dependencies: bool,
}
Fields
is_in_binding_loop: Cell<bool>
true if that binding is part of a binding loop that already has been reported.
is_const: bool
true if the binding is a constant value that can be set without creating a binding at runtime
no_external_dependencies: bool
true if this binding does not depends on the value of property that are set externally. When true, this binding cannot be part of a binding loop involving external components
Trait Implementations
sourceimpl Clone for BindingAnalysis
impl Clone for BindingAnalysis
sourcefn clone(&self) -> BindingAnalysis
fn clone(&self) -> BindingAnalysis
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for BindingAnalysis
impl Debug for BindingAnalysis
sourceimpl Default for BindingAnalysis
impl Default for BindingAnalysis
sourcefn default() -> BindingAnalysis
fn default() -> BindingAnalysis
Returns the “default value” for a type. Read more
Auto Trait Implementations
impl !RefUnwindSafe for BindingAnalysis
impl Send for BindingAnalysis
impl !Sync for BindingAnalysis
impl Unpin for BindingAnalysis
impl UnwindSafe for BindingAnalysis
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
impl<T> Pointable for T
impl<T> Pointable for T
sourceimpl<R, P> ReadPrimitive<R> for P where
R: Read + ReadEndian<P>,
P: Default,
impl<R, P> ReadPrimitive<R> for P where
R: Read + ReadEndian<P>,
P: Default,
sourcefn read_from_little_endian(read: &mut R) -> Result<Self, Error>
fn read_from_little_endian(read: &mut R) -> Result<Self, Error>
Read this value from the supplied reader. Same as ReadEndian::read_from_little_endian()
.
sourcefn read_from_big_endian(read: &mut R) -> Result<Self, Error>
fn read_from_big_endian(read: &mut R) -> Result<Self, Error>
Read this value from the supplied reader. Same as ReadEndian::read_from_big_endian()
.
sourcefn read_from_native_endian(read: &mut R) -> Result<Self, Error>
fn read_from_native_endian(read: &mut R) -> Result<Self, Error>
Read this value from the supplied reader. Same as ReadEndian::read_from_native_endian()
.
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more