pub struct Table {
pub name: String,
pub schema: String,
pub count: u64,
pub created_at: TimeStamp,
pub updated_at: TimeStamp,
pub estimated_storage_size: u64,
pub last_import: Option<TimeStamp>,
pub last_log_timestamp: Option<TimeStamp>,
pub expire_days: Option<u32>,
}
Fields§
§name: String
§schema: String
§count: u64
§created_at: TimeStamp
§updated_at: TimeStamp
§estimated_storage_size: u64
§last_import: Option<TimeStamp>
§last_log_timestamp: Option<TimeStamp>
§expire_days: Option<u32>
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Table
impl RefUnwindSafe for Table
impl Send for Table
impl Sync for Table
impl Unpin for Table
impl UnwindSafe for Table
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> 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