[][src]Struct druid::text::format::Validation

pub struct Validation {
    pub selection_change: Option<Selection>,
    pub text_change: Option<String>,
    // some fields omitted
}

The result of a Formatter attempting to validate some partial input.

Fields

selection_change: Option<Selection>

A manual selection override.

This will be set as the new selection (regardless of whether or not validation succeeded or failed)

text_change: Option<String>

A manual text override.

This will be set as the new text, regardless of whether or not validation failed.

Implementations

impl Validation[src]

pub fn success() -> Self[src]

Create a Validation indicating succes.

pub fn failure(err: impl Error + 'static) -> Self[src]

Create a Validation with an error indicating the failure reason.

pub fn change_text(self, text: String) -> Self[src]

Optionally set a String that will replace the current contents.

pub fn change_selection(self, sel: Selection) -> Self[src]

Optionally set a Selection that will replace the current one.

pub fn is_err(&self) -> bool[src]

Returns true if this Validation indicates success.

pub fn error(&self) -> Option<&ValidationError>[src]

If validation failed, return the underlying ValidationError.

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> RoundFrom<T> for T

impl<T, U> RoundInto<U> for T where
    U: RoundFrom<T>, 

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.