pub struct CellDuration {
pub serial: f64,
pub iso: Option<String>,
}Expand description
Spreadsheet-serial duration value (ISO 8601 duration string when available).
Fields§
§serial: f64§iso: Option<String>Trait Implementations§
Source§impl Clone for CellDuration
impl Clone for CellDuration
Source§fn clone(&self) -> CellDuration
fn clone(&self) -> CellDuration
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 moreSource§impl Debug for CellDuration
impl Debug for CellDuration
Source§impl PartialEq for CellDuration
impl PartialEq for CellDuration
Source§fn eq(&self, other: &CellDuration) -> bool
fn eq(&self, other: &CellDuration) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for CellDuration
Auto Trait Implementations§
impl Freeze for CellDuration
impl RefUnwindSafe for CellDuration
impl Send for CellDuration
impl Sync for CellDuration
impl Unpin for CellDuration
impl UnsafeUnpin for CellDuration
impl UnwindSafe for CellDuration
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