pub struct TextFieldTmlBuilder { /* private fields */ }Trait Implementations§
Source§impl<_M, _C> ComposeWithChild<_C, [_M; 0]> for TextFieldTmlBuilder
impl<_M, _C> ComposeWithChild<_C, [_M; 0]> for TextFieldTmlBuilder
type Target = TextFieldTmlBuilder
fn with_child( self, c: _C, ctx: &BuildCtx<'_>, ) -> <TextFieldTmlBuilder as ComposeWithChild<_C, [_M; 0]>>::Target
Source§impl<_M, _C> ComposeWithChild<_C, [_M; 1]> for TextFieldTmlBuilderwhere
Placeholder: ChildFrom<_C, _M>,
impl<_M, _C> ComposeWithChild<_C, [_M; 1]> for TextFieldTmlBuilderwhere
Placeholder: ChildFrom<_C, _M>,
type Target = TextFieldTmlBuilder
fn with_child( self, c: _C, ctx: &BuildCtx<'_>, ) -> <TextFieldTmlBuilder as ComposeWithChild<_C, [_M; 1]>>::Target
Source§impl<_M, _C> ComposeWithChild<_C, [_M; 2]> for TextFieldTmlBuilder
impl<_M, _C> ComposeWithChild<_C, [_M; 2]> for TextFieldTmlBuilder
type Target = TextFieldTmlBuilder
fn with_child( self, c: _C, ctx: &BuildCtx<'_>, ) -> <TextFieldTmlBuilder as ComposeWithChild<_C, [_M; 2]>>::Target
Source§impl<_M, _C> ComposeWithChild<_C, [_M; 3]> for TextFieldTmlBuilder
impl<_M, _C> ComposeWithChild<_C, [_M; 3]> for TextFieldTmlBuilder
type Target = TextFieldTmlBuilder
fn with_child( self, c: _C, ctx: &BuildCtx<'_>, ) -> <TextFieldTmlBuilder as ComposeWithChild<_C, [_M; 3]>>::Target
Source§impl<_M, _C> ComposeWithChild<_C, [_M; 4]> for TextFieldTmlBuilder
impl<_M, _C> ComposeWithChild<_C, [_M; 4]> for TextFieldTmlBuilder
type Target = TextFieldTmlBuilder
fn with_child( self, c: _C, ctx: &BuildCtx<'_>, ) -> <TextFieldTmlBuilder as ComposeWithChild<_C, [_M; 4]>>::Target
Source§impl<_M, _C> ComposeWithChild<_C, [_M; 5]> for TextFieldTmlBuilder
impl<_M, _C> ComposeWithChild<_C, [_M; 5]> for TextFieldTmlBuilder
type Target = TextFieldTmlBuilder
fn with_child( self, c: _C, ctx: &BuildCtx<'_>, ) -> <TextFieldTmlBuilder as ComposeWithChild<_C, [_M; 5]>>::Target
Source§impl Default for TextFieldTmlBuilder
impl Default for TextFieldTmlBuilder
Source§fn default() -> TextFieldTmlBuilder
fn default() -> TextFieldTmlBuilder
Returns the “default value” for a type. Read more
Source§impl From<TextFieldTmlBuilder> for TextFieldTml
impl From<TextFieldTmlBuilder> for TextFieldTml
Source§fn from(value: TextFieldTmlBuilder) -> TextFieldTml
fn from(value: TextFieldTmlBuilder) -> TextFieldTml
Converts to this type from the input type.
Source§impl FromAnother<TextFieldTmlBuilder, ()> for TextFieldTml
impl FromAnother<TextFieldTmlBuilder, ()> for TextFieldTml
fn from_another(value: TextFieldTmlBuilder, _: &BuildCtx<'_>) -> TextFieldTml
Source§impl ObjDeclarer for TextFieldTmlBuilder
impl ObjDeclarer for TextFieldTmlBuilder
type Target = TextFieldTmlBuilder
Source§fn finish(self, _: &BuildCtx<'_>) -> TextFieldTmlBuilder
fn finish(self, _: &BuildCtx<'_>) -> TextFieldTmlBuilder
Finish the object creation with the given context.
Source§impl TemplateBuilder for TextFieldTmlBuilder
impl TemplateBuilder for TextFieldTmlBuilder
type Target = TextFieldTml
fn build_tml(self) -> <TextFieldTmlBuilder as TemplateBuilder>::Target
Auto Trait Implementations§
impl Freeze for TextFieldTmlBuilder
impl RefUnwindSafe for TextFieldTmlBuilder
impl Send for TextFieldTmlBuilder
impl Sync for TextFieldTmlBuilder
impl Unpin for TextFieldTmlBuilder
impl UnsafeUnpin for TextFieldTmlBuilder
impl UnwindSafe for TextFieldTmlBuilder
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
Source§fn into_any(self: Box<T>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
Convert
Box<dyn Trait> (where Trait: Downcast) to Box<dyn Any>. Box<dyn Any> can
then be further downcast into Box<ConcreteType> where ConcreteType implements Trait.Source§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Convert
Rc<Trait> (where Trait: Downcast) to Rc<Any>. Rc<Any> can then be
further downcast into Rc<ConcreteType> where ConcreteType implements Trait.Source§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
Convert
&Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &Any’s vtable from &Trait’s.Source§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
Convert
&mut Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &mut Any’s vtable from &mut Trait’s.Source§impl<T> DowncastSync for T
impl<T> DowncastSync for T
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