pub struct TextPartInputTime {
pub start: f64,
pub end: Option<f64>,
}Expand description
Timing information for a TextPartInput.
Fields§
§start: f64Epoch timestamp when text input started.
end: Option<f64>Epoch timestamp when text input ended.
Trait Implementations§
Source§impl Clone for TextPartInputTime
impl Clone for TextPartInputTime
Source§fn clone(&self) -> TextPartInputTime
fn clone(&self) -> TextPartInputTime
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 TextPartInputTime
impl Debug for TextPartInputTime
Source§impl<'de> Deserialize<'de> for TextPartInputTime
impl<'de> Deserialize<'de> for TextPartInputTime
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for TextPartInputTime
impl PartialEq for TextPartInputTime
Source§impl Serialize for TextPartInputTime
impl Serialize for TextPartInputTime
impl StructuralPartialEq for TextPartInputTime
Auto Trait Implementations§
impl Freeze for TextPartInputTime
impl RefUnwindSafe for TextPartInputTime
impl Send for TextPartInputTime
impl Sync for TextPartInputTime
impl Unpin for TextPartInputTime
impl UnwindSafe for TextPartInputTime
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