pub struct DirectedCellResult {
pub cell: String,
pub result: Result<Value, CalcError>,
}Expand description
Result of one directed root in a stable multi-root request.
Fields§
§cell: StringCanonical root path.
result: Result<Value, CalcError>Current ordinary value or typed calculation error.
Trait Implementations§
Source§impl Clone for DirectedCellResult
impl Clone for DirectedCellResult
Source§fn clone(&self) -> DirectedCellResult
fn clone(&self) -> DirectedCellResult
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl !RefUnwindSafe for DirectedCellResult
impl !UnwindSafe for DirectedCellResult
impl Freeze for DirectedCellResult
impl Send for DirectedCellResult
impl Sync for DirectedCellResult
impl Unpin for DirectedCellResult
impl UnsafeUnpin for DirectedCellResult
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