Struct otter_api_tests::imports::libc::tm[]

#[repr(C)]
pub struct tm { pub tm_sec: i32, pub tm_min: i32, pub tm_hour: i32, pub tm_mday: i32, pub tm_mon: i32, pub tm_year: i32, pub tm_wday: i32, pub tm_yday: i32, pub tm_isdst: i32, pub tm_gmtoff: i64, pub tm_zone: *const i8, }

Fields

tm_sec: i32tm_min: i32tm_hour: i32tm_mday: i32tm_mon: i32tm_year: i32tm_wday: i32tm_yday: i32tm_isdst: i32tm_gmtoff: i64tm_zone: *const i8

Trait Implementations

impl Clone for tm

impl Copy for tm

impl Debug for tm

impl Eq for tm

impl Hash for tm

impl PartialEq<tm> for tm

impl StructuralEq for tm

impl StructuralPartialEq for tm

Auto Trait Implementations

impl RefUnwindSafe for tm

impl !Send for tm

impl !Sync for tm

impl Unpin for tm

impl UnwindSafe for tm

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> Downcast for T where
    T: Any

impl<T> DowncastSync for T where
    T: Any + Send + Sync

impl<A> DynCastExt for A

impl<T> From<T> 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>,