pub struct MissingIfKeyword {
pub keyword: &'static str,
}Expand description
Missing then or else keyword in an if expression.
Fields§
§keyword: &'static strThe keyword that was expected.
Trait Implementations§
Source§impl Clone for MissingIfKeyword
impl Clone for MissingIfKeyword
Source§fn clone(&self) -> MissingIfKeyword
fn clone(&self) -> MissingIfKeyword
Returns a duplicate of the value. Read more
1.0.0 · 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 MissingIfKeyword
impl Debug for MissingIfKeyword
Source§impl ErrorKind for MissingIfKeyword
impl ErrorKind for MissingIfKeyword
Source§impl PartialEq for MissingIfKeyword
impl PartialEq for MissingIfKeyword
impl StructuralPartialEq for MissingIfKeyword
Auto Trait Implementations§
impl Freeze for MissingIfKeyword
impl RefUnwindSafe for MissingIfKeyword
impl Send for MissingIfKeyword
impl Sync for MissingIfKeyword
impl Unpin for MissingIfKeyword
impl UnwindSafe for MissingIfKeyword
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