当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Rust FromSecsError用法及代码示例


本文简要介绍rust语言中 Struct std::time::FromSecsError 的用法。

用法

pub struct FromSecsError { /* fields omitted */ }

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

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

示例

#![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);
}

相关用法


注:本文由纯净天空筛选整理自rust-lang.org大神的英文原创作品 Struct std::time::FromSecsError。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。