pub struct FillResult {
pub filled: bool,
pub verified: bool,
pub skipped: bool,
pub actual_value: Option<String>,
}Expand description
Result of a fill operation.
Fields§
§filled: boolWhether the fill was performed.
verified: boolWhether the fill was verified as successful.
skipped: boolWhether the fill was skipped (element had content).
actual_value: Option<String>The actual value after filling.
Implementations§
Trait Implementations§
Source§impl Clone for FillResult
impl Clone for FillResult
Source§fn clone(&self) -> FillResult
fn clone(&self) -> FillResult
Returns a duplicate 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 moreAuto Trait Implementations§
impl Freeze for FillResult
impl RefUnwindSafe for FillResult
impl Send for FillResult
impl Sync for FillResult
impl Unpin for FillResult
impl UnsafeUnpin for FillResult
impl UnwindSafe for FillResult
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