Struct i_slint_compiler::llr::GlobalComponent
source · pub struct GlobalComponent {
pub name: String,
pub properties: Vec<Property>,
pub functions: Vec<Function>,
pub init_values: Vec<Option<BindingExpression>>,
pub const_properties: Vec<bool>,
pub public_properties: PublicProperties,
pub private_properties: PrivateProperties,
pub exported: bool,
pub aliases: Vec<String>,
pub is_builtin: bool,
pub prop_analysis: Vec<PropertyAnalysis>,
}Fields§
§name: String§properties: Vec<Property>§functions: Vec<Function>§init_values: Vec<Option<BindingExpression>>One entry per property
const_properties: Vec<bool>§public_properties: PublicProperties§private_properties: PrivateProperties§exported: booltrue if we should expose the global in the generated API
aliases: Vec<String>The extra names under which this component should be accessible if it is exported several time.
is_builtin: boolTrue when this is a built-in global that does not need to be generated
prop_analysis: Vec<PropertyAnalysis>Analysis for each properties
Trait Implementations§
Auto Trait Implementations§
impl Freeze for GlobalComponent
impl !RefUnwindSafe for GlobalComponent
impl !Send for GlobalComponent
impl !Sync for GlobalComponent
impl Unpin for GlobalComponent
impl !UnwindSafe for GlobalComponent
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> 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