[][src]Struct duplicati::client::backups::Backup

pub struct Backup {
    pub id: u32,
    pub name: String,
    pub description: String,
    pub tags: Vec<String>,
    pub target_url: String,
    pub db_path: String,
    pub metadata: HashMap<String, String>,
    pub is_temporary: bool,
    pub progress: Option<ProgressState>,
}

Fields

id: u32name: Stringdescription: Stringtags: Vec<String>target_url: Stringdb_path: Stringmetadata: HashMap<String, String>is_temporary: boolprogress: Option<ProgressState>

Trait Implementations

impl Debug for Backup[src]

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

Auto Trait Implementations

impl RefUnwindSafe for Backup

impl Send for Backup

impl Sync for Backup

impl Unpin for Backup

impl UnwindSafe for Backup

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

type Output = T

Should always be Self

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.