pub struct BaseTime {
pub session_id: String,
pub name: String,
pub priority: u32,
pub elapsed_time: Duration,
pub base_time: DateTime<Utc>,
}Expand description
基準時刻です。
あるセッションの基準となる時刻です。
Fields
session_id: StringセッションID
name: String基準時刻の名称
priority: u32優先度
elapsed_time: Duration経過時間
base_time: DateTime<Utc>基準時刻
Trait Implementations
impl StructuralPartialEq for BaseTime
Auto Trait Implementations
impl RefUnwindSafe for BaseTime
impl Send for BaseTime
impl Sync for BaseTime
impl Unpin for BaseTime
impl UnwindSafe for BaseTime
Blanket Implementations
impl<T> Any for Twhere
T: Any + ?Sized,
impl<T> Any for Twhere
T: Any + ?Sized,
fn type_id_compat(&self) -> TypeId
fn type_id_compat(&self) -> TypeId
TODO: once 1.33.0 is the minimum supported compiler version, remove
Any::type_id_compat and use StdAny::type_id instead.
https://github.com/rust-lang/rust/issues/27745 Read more
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more