#[non_exhaustive]#[repr(u32)]pub enum VclFuncFail {
Ok = 0,
Recurse = 1,
Method = 2,
}Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Trait Implementations§
Source§impl Clone for VclFuncFail
impl Clone for VclFuncFail
Source§fn clone(&self) -> VclFuncFail
fn clone(&self) -> VclFuncFail
Returns a copy 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 VclFuncFail
impl Debug for VclFuncFail
Source§impl Hash for VclFuncFail
impl Hash for VclFuncFail
Source§impl PartialEq for VclFuncFail
impl PartialEq for VclFuncFail
impl Copy for VclFuncFail
impl Eq for VclFuncFail
impl StructuralPartialEq for VclFuncFail
Auto Trait Implementations§
impl Freeze for VclFuncFail
impl RefUnwindSafe for VclFuncFail
impl Send for VclFuncFail
impl Sync for VclFuncFail
impl Unpin for VclFuncFail
impl UnwindSafe for VclFuncFail
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