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

pub struct RemoteFile<'a> {
    pub host_and_path: &'a str,
    pub fname: &'a str,
    pub sha256: &'a str,
    pub query: &'a str,
}

Information about the file to get. Used when building FConf

Fields

host_and_path: &'a str

Host name and its path

fname: &'a str

File name

sha256: &'a str

sha256 value of the file

query: &'a str

Query used to get the file

Methods

impl<'a> RemoteFile<'a>[src]

pub fn new(
    host_and_path: &'a str,
    fname: &'a str,
    sha256: &'a str,
    query: &'a str
) -> Self
[src]

RemoteFile constructor

Trait Implementations

impl<'a> Debug for RemoteFile<'a>[src]

impl<'a> Display for RemoteFile<'a>[src]

Auto Trait Implementations

impl<'a> RefUnwindSafe for RemoteFile<'a>

impl<'a> Send for RemoteFile<'a>

impl<'a> Sync for RemoteFile<'a>

impl<'a> Unpin for RemoteFile<'a>

impl<'a> UnwindSafe for RemoteFile<'a>

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> ToString for T where
    T: Display + ?Sized
[src]

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