Struct core::time::FromSecsError[][src]

pub struct FromSecsError { /* fields omitted */ }
🔬 This is a nightly-only experimental API. (duration_checked_float #83400)
Expand description

将秒的浮点值转换为 Duration 时可能返回的错误。

此错误用作 Duration::try_from_secs_f32Duration::try_from_secs_f64 的错误类型。

Example

#![feature(duration_checked_float)]

use std::time::Duration;

if let Err(e) = Duration::try_from_secs_f32(-1.0) {
    println!("Failed conversion to Duration: {}", e);
}
Run

Trait Implementations

返回值的副本。 Read more

source 执行复制分配。 Read more

使用给定的格式化程序格式化该值。 Read more

使用给定的格式化程序格式化该值。 Read more

此方法测试 selfother 值是否相等,并由 == 使用。 Read more

此方法测试 !=

Auto Trait Implementations

Blanket Implementations

获取 selfTypeIdRead more

从拥有的值中一成不变地借用。 Read more

从拥有的值中借用。 Read more

执行转换。

执行转换。

发生转换错误时返回的类型。

执行转换。

发生转换错误时返回的类型。

执行转换。