pub struct ArrayEditorBuilder<'a, T, I>where
T: Reflect + 'static,
I: IntoIterator<Item = &'a T>,{ /* private fields */ }Implementations§
source§impl<'a, T, I> ArrayEditorBuilder<'a, T, I>where
T: Reflect + 'static,
I: IntoIterator<Item = &'a T>,
impl<'a, T, I> ArrayEditorBuilder<'a, T, I>where T: Reflect + 'static, I: IntoIterator<Item = &'a T>,
pub fn new(widget_builder: WidgetBuilder) -> Self
pub fn with_collection(self, collection: I) -> Self
pub fn with_environment( self, environment: Option<Rc<dyn InspectorEnvironment>> ) -> Self
pub fn with_generate_property_string_values( self, generate_property_string_values: bool ) -> Self
pub fn with_definition_container( self, definition_container: Rc<PropertyEditorDefinitionContainer> ) -> Self
pub fn with_layer_index(self, layer_index: usize) -> Self
pub fn with_filter(self, filter: PropertyFilter) -> Self
pub fn build(self, ctx: &mut BuildContext<'_>, sync_flag: u64) -> Handle<UiNode>
Auto Trait Implementations§
impl<'a, T, I> !RefUnwindSafe for ArrayEditorBuilder<'a, T, I>
impl<'a, T, I> !Send for ArrayEditorBuilder<'a, T, I>
impl<'a, T, I> !Sync for ArrayEditorBuilder<'a, T, I>
impl<'a, T, I> Unpin for ArrayEditorBuilder<'a, T, I>where I: Unpin,
impl<'a, T, I> !UnwindSafe for ArrayEditorBuilder<'a, T, I>
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> FieldValue for Twhere
T: 'static,
impl<T> FieldValue for Twhere T: 'static,
§impl<T> Pointable for T
impl<T> Pointable for T
§impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
impl<SS, SP> SupersetOf<SS> for SPwhere SS: SubsetOf<SP>,
§fn to_subset(&self) -> Option<SS>
fn to_subset(&self) -> Option<SS>
The inverse inclusion map: attempts to construct
self from the equivalent element of its
superset. Read more§fn is_in_subset(&self) -> bool
fn is_in_subset(&self) -> bool
Checks if
self is actually part of its subset T (and can be converted to it).§fn to_subset_unchecked(&self) -> SS
fn to_subset_unchecked(&self) -> SS
Use with care! Same as
self.to_subset but without any property checks. Always succeeds.§fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
The inclusion map: converts
self to the equivalent element of its superset.