pub enum SchemeFormStatus {
Supported,
Unsupported(&'static str),
}Expand description
Whether a Scheme surface form is supported by this profile.
Variants§
Supported
The form lowers to runtime behavior.
Unsupported(&'static str)
The form is recognized but deferred; the string explains why.
Trait Implementations§
Source§impl Clone for SchemeFormStatus
impl Clone for SchemeFormStatus
Source§fn clone(&self) -> SchemeFormStatus
fn clone(&self) -> SchemeFormStatus
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 SchemeFormStatus
impl RefUnwindSafe for SchemeFormStatus
impl Send for SchemeFormStatus
impl Sync for SchemeFormStatus
impl Unpin for SchemeFormStatus
impl UnsafeUnpin for SchemeFormStatus
impl UnwindSafe for SchemeFormStatus
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