Enum firestorm_enabled::internal::Start
source · [−]#[non_exhaustive]
pub enum Start {
Method {
typ: &'static str,
signature: &'static &'static str,
},
Func {
signature: &'static &'static str,
},
Section {
name: &'static &'static str,
},
}
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.
Method
Func
Fields
signature: &'static &'static str
Section
Fields
name: &'static &'static str
Auto Trait Implementations
impl RefUnwindSafe for Start
impl Send for Start
impl Sync for Start
impl Unpin for Start
impl UnwindSafe for Start
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more