#![cfg(doc)]
pub mod langref {
#![doc(include = "docs/langref.md")]
#![doc = ""]
}
#[cfg(all(doc, nightly))]
pub mod builtin_elements {
#![doc(include = "docs/builtin_elements.md")]
#![doc = ""]
}
#[cfg(all(doc, nightly))]
pub mod widgets {
#![doc(include = "docs/widgets.md")]
#![doc = ""]
}
pub mod generated_code {
use crate::re_exports;
pub struct SampleComponent {}
impl SampleComponent {
pub fn new() -> core::pin::Pin<std::rc::Rc<Self>> {
unimplemented!()
}
pub fn run(self: core::pin::Pin<std::rc::Rc<Self>>) {}
pub fn as_weak(self: core::pin::Pin<std::rc::Rc<Self>>) -> re_exports::PinWeak<Self> {
unimplemented!()
}
pub fn get_counter(self: ::core::pin::Pin<&Self>) -> i32 {
unimplemented!()
}
pub fn set_counter(&self, value: i32) {}
pub fn get_user_name(self: ::core::pin::Pin<&Self>) -> re_exports::SharedString {
unimplemented!()
}
pub fn set_user_name(&self, value: re_exports::SharedString) {}
pub fn emit_hello(self: ::core::pin::Pin<&Self>) {}
pub fn on_hello(self: ::core::pin::Pin<&Self>, f: impl Fn() + 'static) {}
}
}