use crate::{Rudof, api::core::CoreOperations};
pub struct ResetAllBuilder<'a> {
rudof: &'a mut Rudof,
}
impl<'a> ResetAllBuilder<'a> {
pub(crate) fn new(rudof: &'a mut Rudof) -> Self {
Self { rudof }
}
pub fn execute(self) {
<Rudof as CoreOperations>::reset_all(self.rudof)
}
}