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§

Returns a copy of the value. Read more
Performs copy-assignment from source. Read more
Formats the value using the given formatter. Read more
Returns the “default value” for a type. Read more

Auto Trait Implementations§

Blanket Implementations§

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.
Creates owned data from borrowed data, usually by cloning. Read more
Uses borrowed data to replace owned data, usually by cloning. Read more
The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.