pub enum InputElementGetValueError {
ElementIsNotHtmlInputElement,
OutBufferBelowMinimumSize,
OutBufferSmallerThanValue {
value_len: usize,
},
Unrecognized {
error_code: i32,
},
}Expand description
An error when attempting to retrieve an input element’s value.
Variants§
ElementIsNotHtmlInputElement
The element was not an <input> element.
OutBufferBelowMinimumSize
The out buffer was smaller than the minimum allowed size.
OutBufferSmallerThanValue
The out buffer was smaller than the length of the input element’s value.
Unrecognized
Trait Implementations§
Auto Trait Implementations§
impl Freeze for InputElementGetValueError
impl RefUnwindSafe for InputElementGetValueError
impl Send for InputElementGetValueError
impl Sync for InputElementGetValueError
impl Unpin for InputElementGetValueError
impl UnsafeUnpin for InputElementGetValueError
impl UnwindSafe for InputElementGetValueError
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