Struct libkelp::lib::structs::fileinfo::FileInfo[][src]

pub struct FileInfo {
    pub name: Option<String>,
    pub path: String,
    pub backuponly: Option<bool>,
    pub onlyon: Option<String>,
}

FileINFO struct: used for represent a file to backup

Fields

name: Option<String>

The name of the file, optional but recommended to reconize files

path: String

The path to the file “relative to / or /home/$USER”

backuponly: Option<bool>

Is the file backup only ? Or must it be reinstalled

onlyon: Option<String>

If the file is only usable on specific disto, specify it Note: There’s a list of bundled OSes

Trait Implementations

impl Clone for FileInfo[src]

impl Debug for FileInfo[src]

impl<'de> Deserialize<'de> for FileInfo[src]

impl Display for FileInfo[src]

impl PartialEq<FileInfo> for FileInfo[src]

impl Serialize for FileInfo[src]

impl StructuralPartialEq for FileInfo[src]

Auto Trait Implementations

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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[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> 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.