pub struct AssetSchemaVersion {
pub version: i64,
pub columns: Vec<AssetSchemaVersionColumnsInner>,
pub snapshot_id: Option<Option<i64>>,
pub job_id: Option<Option<Uuid>>,
pub captured_at: String,
}Fields§
§version: i64§columns: Vec<AssetSchemaVersionColumnsInner>§snapshot_id: Option<Option<i64>>§job_id: Option<Option<Uuid>>§captured_at: StringImplementations§
Source§impl AssetSchemaVersion
impl AssetSchemaVersion
pub fn new( version: i64, columns: Vec<AssetSchemaVersionColumnsInner>, captured_at: String, ) -> AssetSchemaVersion
Trait Implementations§
Source§impl Clone for AssetSchemaVersion
impl Clone for AssetSchemaVersion
Source§fn clone(&self) -> AssetSchemaVersion
fn clone(&self) -> AssetSchemaVersion
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 moreSource§impl Debug for AssetSchemaVersion
impl Debug for AssetSchemaVersion
Source§impl Default for AssetSchemaVersion
impl Default for AssetSchemaVersion
Source§fn default() -> AssetSchemaVersion
fn default() -> AssetSchemaVersion
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AssetSchemaVersion
impl<'de> Deserialize<'de> for AssetSchemaVersion
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for AssetSchemaVersion
impl PartialEq for AssetSchemaVersion
Source§fn eq(&self, other: &AssetSchemaVersion) -> bool
fn eq(&self, other: &AssetSchemaVersion) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for AssetSchemaVersion
impl Serialize for AssetSchemaVersion
impl StructuralPartialEq for AssetSchemaVersion
Auto Trait Implementations§
impl Freeze for AssetSchemaVersion
impl RefUnwindSafe for AssetSchemaVersion
impl Send for AssetSchemaVersion
impl Sync for AssetSchemaVersion
impl Unpin for AssetSchemaVersion
impl UnsafeUnpin for AssetSchemaVersion
impl UnwindSafe for AssetSchemaVersion
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