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<<SessionRuntimeScaffold as SessionRuntime>::Handle, Error>
fn apply_edits( &self, _handle: &<SessionRuntimeScaffold as SessionRuntime>::Handle, _sheet_name: &str, _edits: &[CellEdit], ) -> Result<(), Error>
fn recalculate( &self, _handle: &<SessionRuntimeScaffold as SessionRuntime>::Handle, _timeout_ms: Option<u64>, ) -> Result<(), Error>
fn save_as( &self, _handle: &<SessionRuntimeScaffold as SessionRuntime>::Handle, _output_path: &Path, ) -> Result<PathBuf, Error>
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more