pub struct MigrationPlanRow {
pub id: String,
pub package_id: String,
pub tenant_id: String,
pub from_version: Option<String>,
pub to_version: String,
pub plan_json: Value,
pub zip_bytes: Vec<u8>,
pub status: String,
pub created_at: DateTime<Utc>,
pub expires_at: DateTime<Utc>,
pub applied_at: Option<DateTime<Utc>>,
}Expand description
Row returned from _sys_migration_plans.
Fields§
§id: String§package_id: String§tenant_id: String§from_version: Option<String>§to_version: String§plan_json: Value§zip_bytes: Vec<u8>§status: String§created_at: DateTime<Utc>§expires_at: DateTime<Utc>§applied_at: Option<DateTime<Utc>>Auto Trait Implementations§
impl Freeze for MigrationPlanRow
impl RefUnwindSafe for MigrationPlanRow
impl Send for MigrationPlanRow
impl Sync for MigrationPlanRow
impl Unpin for MigrationPlanRow
impl UnsafeUnpin for MigrationPlanRow
impl UnwindSafe for MigrationPlanRow
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
impl<A, B, T> HttpServerConnExec<A, B> for Twhere
B: Body,
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