pub struct XfaSetOutcome {
pub raw_value: String,
pub persisted_to_datasets: bool,
}Expand description
Outcome of a successful XfaSession::set_value call.
Fields§
§raw_value: StringThe normalized value written to the form tree (e.g. the resolved save value of a dropdown, or a checkbox on/off value).
persisted_to_datasets: boolThe value was written through to a datasets node (existing or
created on demand) and will be persisted by XfaSession::save_to_bytes.
Trait Implementations§
Source§impl Clone for XfaSetOutcome
impl Clone for XfaSetOutcome
Source§fn clone(&self) -> XfaSetOutcome
fn clone(&self) -> XfaSetOutcome
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 XfaSetOutcome
impl RefUnwindSafe for XfaSetOutcome
impl Send for XfaSetOutcome
impl Sync for XfaSetOutcome
impl Unpin for XfaSetOutcome
impl UnsafeUnpin for XfaSetOutcome
impl UnwindSafe for XfaSetOutcome
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> ErasedDestructor for Twhere
T: 'static,
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 more