pub enum Support {
Fragment,
Manual(&'static str),
}Expand description
Whether a pair is supported, and why not where it is not.
Variants§
Fragment
The pair renders a fragment.
Manual(&'static str)
The pair needs knowledge the binary does not have offline.
Trait Implementations§
impl Copy for Support
impl Eq for Support
impl StructuralPartialEq for Support
Auto Trait Implementations§
impl Freeze for Support
impl RefUnwindSafe for Support
impl Send for Support
impl Sync for Support
impl Unpin for Support
impl UnsafeUnpin for Support
impl UnwindSafe for Support
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