pub enum CheckOutcome {
Static,
Deferred,
}Expand description
Lower-time checking outcome for one positional arg.
Variants§
Static
Validated now; nothing deferred.
Deferred
Unknowable until runtime (template, variable, or fragment); runtime resolvers enforce the type on the resolved value.
Trait Implementations§
Source§impl Clone for CheckOutcome
impl Clone for CheckOutcome
impl Copy for CheckOutcome
Source§impl Debug for CheckOutcome
impl Debug for CheckOutcome
impl Eq for CheckOutcome
Source§impl PartialEq for CheckOutcome
impl PartialEq for CheckOutcome
impl StructuralPartialEq for CheckOutcome
Auto Trait Implementations§
impl Freeze for CheckOutcome
impl RefUnwindSafe for CheckOutcome
impl Send for CheckOutcome
impl Sync for CheckOutcome
impl Unpin for CheckOutcome
impl UnsafeUnpin for CheckOutcome
impl UnwindSafe for CheckOutcome
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