[][src]Struct deep_learning_playground::utils::fetch_client::FConf

pub struct FConf<'a, T> where
    T: Iterator<Item = &'a RemoteFile<'a>> + ExactSizeIterator
{ pub save_dir_name: &'a str, pub remote_file: T, }

The structure to perform initialization setting of FetchClient

Fields

save_dir_name: &'a str

Directory name

remote_file: T

Information of the file to be fetched

Methods

impl<'a, T> FConf<'a, T> where
    T: Iterator<Item = &'a RemoteFile<'a>> + ExactSizeIterator
[src]

pub fn new(save_dir_name: &'a str, rf: T) -> Self[src]

FConf constructor

Auto Trait Implementations

impl<'a, T> RefUnwindSafe for FConf<'a, T> where
    T: RefUnwindSafe

impl<'a, T> Send for FConf<'a, T> where
    T: Send

impl<'a, T> Sync for FConf<'a, T> where
    T: Sync

impl<'a, T> Unpin for FConf<'a, T> where
    T: Unpin

impl<'a, T> UnwindSafe for FConf<'a, T> where
    T: UnwindSafe

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> FromPy<T> for T

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> IntoPy<U> for T where
    U: FromPy<T>, 

impl<T> SetParameter for T

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