[][src]Struct kerberos_ccache::Times

pub struct Times {
    pub authtime: u32,
    pub starttime: u32,
    pub endtime: u32,
    pub renew_till: u32,
}

Holds the differents timestamps handled by Kerberos.

Definition

times {
      uint32_t  authtime;
      uint32_t  starttime;
      uint32_t  endtime;
      uint32_t  renew_till;
};

Fields

authtime: u32starttime: u32endtime: u32renew_till: u32

Methods

impl Times[src]

pub fn new(authtime: u32, starttime: u32, endtime: u32, renew_till: u32) -> Self[src]

pub fn build(&self) -> Vec<u8>[src]

Build the binary representation

pub fn parse(raw: &[u8]) -> IResult<&[u8], Self>[src]

Creates a new instance from the binary representation

Error

Returns error when the binary has not the expected format.

Trait Implementations

impl Clone for Times[src]

impl Debug for Times[src]

impl PartialEq<Times> for Times[src]

impl StructuralPartialEq for Times[src]

Auto Trait Implementations

impl RefUnwindSafe for Times

impl Send for Times

impl Sync for Times

impl Unpin for Times

impl UnwindSafe for Times

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> 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.