pub struct UnsupportedFeature {
pub feature: &'static str,
pub detail: String,
}Expand description
An unsupported feature detected during translation.
Fields§
§feature: &'static strFeature name.
detail: StringDetails about the input that triggered this.
Trait Implementations§
Source§impl Clone for UnsupportedFeature
impl Clone for UnsupportedFeature
Source§fn clone(&self) -> UnsupportedFeature
fn clone(&self) -> UnsupportedFeature
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 moreSource§impl Debug for UnsupportedFeature
impl Debug for UnsupportedFeature
Source§impl Display for UnsupportedFeature
impl Display for UnsupportedFeature
Source§impl PartialEq for UnsupportedFeature
impl PartialEq for UnsupportedFeature
impl StructuralPartialEq for UnsupportedFeature
Auto Trait Implementations§
impl Freeze for UnsupportedFeature
impl RefUnwindSafe for UnsupportedFeature
impl Send for UnsupportedFeature
impl Sync for UnsupportedFeature
impl Unpin for UnsupportedFeature
impl UnsafeUnpin for UnsupportedFeature
impl UnwindSafe for UnsupportedFeature
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