pub struct InputBindingContext {
pub value: Option<String>,
}
Expand description
Fields§
§value: Option<String>
Value of the input
Implementations§
Trait Implementations§
source§impl Clone for InputBindingContext
impl Clone for InputBindingContext
source§fn clone(&self) -> InputBindingContext
fn clone(&self) -> InputBindingContext
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for InputBindingContext
impl Debug for InputBindingContext
source§impl Default for InputBindingContext
impl Default for InputBindingContext
source§fn default() -> InputBindingContext
fn default() -> InputBindingContext
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for InputBindingContext
impl<'de> Deserialize<'de> for InputBindingContext
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl PartialEq for InputBindingContext
impl PartialEq for InputBindingContext
source§fn eq(&self, other: &InputBindingContext) -> bool
fn eq(&self, other: &InputBindingContext) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for InputBindingContext
impl Serialize for InputBindingContext
impl StructuralPartialEq for InputBindingContext
Auto Trait Implementations§
impl Freeze for InputBindingContext
impl RefUnwindSafe for InputBindingContext
impl Send for InputBindingContext
impl Sync for InputBindingContext
impl Unpin for InputBindingContext
impl UnwindSafe for InputBindingContext
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