pub struct BackupRow {Show 13 fields
pub backup_id: String,
pub harness: String,
pub session_id: String,
pub project_key: String,
pub op_id: Option<String>,
pub order: u128,
pub file_path: String,
pub path_hash: String,
pub backup_path: Option<String>,
pub kind: String,
pub description: String,
pub created_at: i64,
pub is_tombstone: bool,
}Fields§
§backup_id: String§harness: String§session_id: String§project_key: String§op_id: Option<String>§order: u128§file_path: String§path_hash: String§backup_path: Option<String>§kind: String§description: String§created_at: i64§is_tombstone: boolTrait Implementations§
Auto Trait Implementations§
impl Freeze for BackupRow
impl RefUnwindSafe for BackupRow
impl Send for BackupRow
impl Sync for BackupRow
impl Unpin for BackupRow
impl UnsafeUnpin for BackupRow
impl UnwindSafe for BackupRow
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more