Struct i_slint_compiler::langtype::PropertyLookupResult
source · pub struct PropertyLookupResult<'a> {
pub resolved_name: Cow<'a, str>,
pub property_type: Type,
pub property_visibility: PropertyVisibility,
pub declared_pure: Option<bool>,
pub is_local_to_component: bool,
}
Fields§
§resolved_name: Cow<'a, str>
§property_type: Type
§property_visibility: PropertyVisibility
§declared_pure: Option<bool>
§is_local_to_component: bool
True if the property is part of the the current component (for visibility purposes)
Implementations§
source§impl<'a> PropertyLookupResult<'a>
impl<'a> PropertyLookupResult<'a>
Trait Implementations§
source§impl<'a> Debug for PropertyLookupResult<'a>
impl<'a> Debug for PropertyLookupResult<'a>
source§impl<'a> PartialEq<PropertyLookupResult<'a>> for PropertyLookupResult<'a>
impl<'a> PartialEq<PropertyLookupResult<'a>> for PropertyLookupResult<'a>
source§fn eq(&self, other: &PropertyLookupResult<'a>) -> bool
fn eq(&self, other: &PropertyLookupResult<'a>) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.