pub enum Config<T> {
initialize_one(T),
dummy_to_use_type_params(State<T>),
}
Variants§
Implementations§
source§impl<T> Config<T>
impl<T> Config<T>
pub fn arrow_initialize_one_0(self) -> T
pub fn arrow_dummy_to_use_type_params_0(self) -> State<T>
source§impl<T> Config<T>
impl<T> Config<T>
sourcepub exec fn is_initialize_one(&self) -> bool
pub exec fn is_initialize_one(&self) -> bool
sourcepub exec fn get_initialize_one_0(self) -> T
pub exec fn get_initialize_one_0(self) -> T
sourcepub exec fn is_dummy_to_use_type_params(&self) -> bool
pub exec fn is_dummy_to_use_type_params(&self) -> bool
sourcepub exec fn get_dummy_to_use_type_params_0(self) -> State<T>
pub exec fn get_dummy_to_use_type_params_0(self) -> State<T>
Auto Trait Implementations§
impl<T> RefUnwindSafe for Config<T>where
T: RefUnwindSafe,
impl<T> Send for Config<T>where
T: Send,
impl<T> Sync for Config<T>where
T: Sync,
impl<T> Unpin for Config<T>where
T: Unpin,
impl<T> UnwindSafe for Config<T>where
T: UnwindSafe,
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