pub struct FilterDropDownElement { /* private fields */ }Implementations§
Source§impl FilterDropDownElement
impl FilterDropDownElement
pub fn new(session: Session) -> Self
pub fn reautocomplete(&self)
pub fn autocomplete( &self, column: (usize, String), input: String, exclude: HashSet<String>, target: HtmlElement, callback: Callback<String>, )
pub fn item_select(&self)
pub fn item_down(&self)
pub fn item_up(&self)
pub fn hide(&self) -> ApiResult<()>
pub fn connected_callback(&self)
Trait Implementations§
Source§impl Clone for FilterDropDownElement
impl Clone for FilterDropDownElement
Source§fn clone(&self) -> FilterDropDownElement
fn clone(&self) -> FilterDropDownElement
Returns a duplicate of the value. Read more
1.0.0§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl From<FilterDropDownElement> for JsValue
impl From<FilterDropDownElement> for JsValue
Source§fn from(value: FilterDropDownElement) -> Self
fn from(value: FilterDropDownElement) -> Self
Converts to this type from the input type.
Source§impl FromWasmAbi for FilterDropDownElement
impl FromWasmAbi for FilterDropDownElement
Source§impl ImplicitClone for FilterDropDownElement
impl ImplicitClone for FilterDropDownElement
Source§fn implicit_clone(&self) -> Self
fn implicit_clone(&self) -> Self
This function is not magic; it is literally defined as Read more
Source§impl IntoWasmAbi for FilterDropDownElement
impl IntoWasmAbi for FilterDropDownElement
Source§impl PartialEq for FilterDropDownElement
impl PartialEq for FilterDropDownElement
Source§impl RefFromWasmAbi for FilterDropDownElement
impl RefFromWasmAbi for FilterDropDownElement
Source§type Anchor = RcRef<FilterDropDownElement>
type Anchor = RcRef<FilterDropDownElement>
The type that holds the reference to
Self for the duration of the
invocation of the function that has an &Self parameter. This is
required to ensure that the lifetimes don’t persist beyond one function
call, and so that they remain anonymous.Source§impl VectorFromWasmAbi for FilterDropDownElement
impl VectorFromWasmAbi for FilterDropDownElement
type Abi = <Box<[JsValue]> as FromWasmAbi>::Abi
unsafe fn vector_from_abi(js: Self::Abi) -> Box<[FilterDropDownElement]>
Source§impl VectorIntoJsValue for FilterDropDownElement
impl VectorIntoJsValue for FilterDropDownElement
fn vector_into_jsvalue(vector: Box<[FilterDropDownElement]>) -> JsValue
Source§impl VectorIntoWasmAbi for FilterDropDownElement
impl VectorIntoWasmAbi for FilterDropDownElement
type Abi = <Box<[JsValue]> as IntoWasmAbi>::Abi
fn vector_into_abi(vector: Box<[FilterDropDownElement]>) -> Self::Abi
Source§impl WasmDescribeVector for FilterDropDownElement
impl WasmDescribeVector for FilterDropDownElement
impl SupportsConstructor for FilterDropDownElement
impl SupportsInstanceProperty for FilterDropDownElement
impl SupportsStaticProperty for FilterDropDownElement
Auto Trait Implementations§
impl Freeze for FilterDropDownElement
impl !RefUnwindSafe for FilterDropDownElement
impl !Send for FilterDropDownElement
impl !Sync for FilterDropDownElement
impl Unpin for FilterDropDownElement
impl !UnwindSafe for FilterDropDownElement
Blanket Implementations§
§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§unsafe fn clone_to_uninit(&self, dest: *mut u8)
unsafe fn clone_to_uninit(&self, dest: *mut u8)
🔬This is a nightly-only experimental API. (
clone_to_uninit)Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
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 moreSource§impl<T> IntoPropValue<Option<T>> for T
impl<T> IntoPropValue<Option<T>> for T
Source§fn into_prop_value(self) -> Option<T>
fn into_prop_value(self) -> Option<T>
Convert
self to a value of a Properties struct.Source§impl<T> IntoPropValue<T> for T
impl<T> IntoPropValue<T> for T
Source§fn into_prop_value(self) -> T
fn into_prop_value(self) -> T
Convert
self to a value of a Properties struct.Source§impl<T> ReturnWasmAbi for Twhere
T: IntoWasmAbi,
impl<T> ReturnWasmAbi for Twhere
T: IntoWasmAbi,
Source§type Abi = <T as IntoWasmAbi>::Abi
type Abi = <T as IntoWasmAbi>::Abi
Same as
IntoWasmAbi::AbiSource§fn return_abi(self) -> <T as ReturnWasmAbi>::Abi
fn return_abi(self) -> <T as ReturnWasmAbi>::Abi
Same as
IntoWasmAbi::into_abi, except that it may throw and never
return in the case of Err.