[][src]Struct ctclient::google_log_list::LogList

pub struct LogList {
    pub map_id_to_log: HashMap<Vec<u8>, Log>,
}

A downloaded log list.

Fields

map_id_to_log: HashMap<Vec<u8>, Log>

Implementations

impl LogList[src]

pub fn get() -> Result<LogList, Error>[src]

Download the log list at runtime.

pub fn find_by_id<'a, 'b>(&'a self, id: &'b [u8]) -> Option<&'a Log>[src]

Lookup a Log by its 32-byte log_id.

Trait Implementations

impl Clone for LogList[src]

impl Debug for LogList[src]

Auto Trait Implementations

impl RefUnwindSafe for LogList

impl Send for LogList

impl Sync for LogList

impl Unpin for LogList

impl UnwindSafe for LogList

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.