pub struct PlannedMigrationFile {
pub path: String,
pub relative_path: String,
pub source_type_name: String,
pub target_type_name: String,
pub target_table: String,
pub size: u64,
pub e_tag: Option<String>,
pub version: Option<String>,
pub last_modified: String,
pub source_fingerprint: SchemaFingerprint,
pub target_fingerprint: SchemaFingerprint,
pub transcode_kind: LegacyTranscodeKind,
}Expand description
One source file accepted by migration preflight.
Fields§
§path: String§relative_path: String§source_type_name: String§target_type_name: String§target_table: String§size: u64§e_tag: Option<String>§version: Option<String>§last_modified: String§source_fingerprint: SchemaFingerprint§target_fingerprint: SchemaFingerprint§transcode_kind: LegacyTranscodeKindTrait Implementations§
Source§impl Clone for PlannedMigrationFile
impl Clone for PlannedMigrationFile
Auto Trait Implementations§
impl Freeze for PlannedMigrationFile
impl RefUnwindSafe for PlannedMigrationFile
impl Send for PlannedMigrationFile
impl Sync for PlannedMigrationFile
impl Unpin for PlannedMigrationFile
impl UnsafeUnpin for PlannedMigrationFile
impl UnwindSafe for PlannedMigrationFile
Blanket Implementations§
impl<T> Allocation for T
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<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
fn instrument(self, span: Span) -> 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