pub struct SessionRuntimeScaffold;Trait Implementations§
Source§impl Clone for SessionRuntimeScaffold
impl Clone for SessionRuntimeScaffold
Source§fn clone(&self) -> SessionRuntimeScaffold
fn clone(&self) -> SessionRuntimeScaffold
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 SessionRuntimeScaffold
impl Debug for SessionRuntimeScaffold
Source§impl Default for SessionRuntimeScaffold
impl Default for SessionRuntimeScaffold
Source§fn default() -> SessionRuntimeScaffold
fn default() -> SessionRuntimeScaffold
Returns the “default value” for a type. Read more
Source§impl SessionRuntime for SessionRuntimeScaffold
impl SessionRuntime for SessionRuntimeScaffold
type Handle = String
fn open(&self, _workbook_path: &Path) -> Result<Self::Handle>
fn apply_edits( &self, _handle: &Self::Handle, _sheet_name: &str, _edits: &[CellEdit], ) -> Result<()>
fn recalculate( &self, _handle: &Self::Handle, _timeout_ms: Option<u64>, ) -> Result<()>
fn save_as( &self, _handle: &Self::Handle, _output_path: &Path, ) -> Result<PathBuf>
Auto Trait Implementations§
impl Freeze for SessionRuntimeScaffold
impl RefUnwindSafe for SessionRuntimeScaffold
impl Send for SessionRuntimeScaffold
impl Sync for SessionRuntimeScaffold
impl Unpin for SessionRuntimeScaffold
impl UnwindSafe for SessionRuntimeScaffold
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