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 ==
.impl<'a> StructuralPartialEq for PropertyLookupResult<'a>
Auto Trait Implementations§
impl<'a> !RefUnwindSafe for PropertyLookupResult<'a>
impl<'a> !Send for PropertyLookupResult<'a>
impl<'a> !Sync for PropertyLookupResult<'a>
impl<'a> Unpin for PropertyLookupResult<'a>
impl<'a> !UnwindSafe for PropertyLookupResult<'a>
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