[][src]Struct aiven_rs::service::types_service::Backup

pub struct Backup {
    pub backup_name: String,
    pub backup_time: String,
    pub data_size: i64,
}

Fields

backup_name: Stringbackup_time: Stringdata_size: i64

Trait Implementations

impl Debug for Backup[src]

impl Default for Backup[src]

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

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