[][src]Struct bosonnlp::ConvertedTime

pub struct ConvertedTime {
    pub timestamp: Option<String>,
    pub timedelta: Option<String>,
    pub timespan: Option<(String, String)>,
    pub format: String,
}

时间转换结果

Fields

timestamp: Option<String>

时间点,ISO8601 格式的时间字符串

timedelta: Option<String>

时间量,格式为 "xday,HH:MM:SS" 或 "HH:MM:SS" 的字符串

timespan: Option<(String, String)>

表示时间点组成的时间区间结果,格式为 (timestamp, timestamp)(timedelta, timedelta) 表示时间区间的起始和结束时间

format: String

时间数据格式, 有 timestamptimedeltatimespan_0、和 timespan_1

Trait Implementations

impl Clone for ConvertedTime[src]

impl Debug for ConvertedTime[src]

impl<'de> Deserialize<'de> for ConvertedTime[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,