pub struct SnapshotEntityType {
pub type_name: String,
pub table_name: String,
pub columns: Vec<SnapshotColumn>,
}Expand description
Serialized form of EntityTypeMeta for snapshot storage.
Fields§
§type_name: String§table_name: String§columns: Vec<SnapshotColumn>Trait Implementations§
Source§impl Clone for SnapshotEntityType
impl Clone for SnapshotEntityType
Source§fn clone(&self) -> SnapshotEntityType
fn clone(&self) -> SnapshotEntityType
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for SnapshotEntityType
impl RefUnwindSafe for SnapshotEntityType
impl Send for SnapshotEntityType
impl Sync for SnapshotEntityType
impl Unpin for SnapshotEntityType
impl UnsafeUnpin for SnapshotEntityType
impl UnwindSafe for SnapshotEntityType
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