pub struct CatalogVersion {
pub id: Uuid,
pub catalog_id: Uuid,
pub version: String,
pub description: Option<String>,
pub created_at: DateTime<Utc>,
pub created_by: Option<Uuid>,
pub is_active: bool,
pub is_published: bool,
pub published_at: Option<DateTime<Utc>>,
pub metadata: Option<Value>,
}Expand description
Catalog version
Fields§
§id: Uuid§catalog_id: Uuid§version: String§description: Option<String>§created_at: DateTime<Utc>§created_by: Option<Uuid>§is_active: bool§is_published: bool§published_at: Option<DateTime<Utc>>§metadata: Option<Value>Trait Implementations§
Source§impl Clone for CatalogVersion
impl Clone for CatalogVersion
Source§fn clone(&self) -> CatalogVersion
fn clone(&self) -> CatalogVersion
Returns a duplicate of the value. Read more
1.0.0 · 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 CatalogVersion
impl Debug for CatalogVersion
Source§impl<'de> Deserialize<'de> for CatalogVersion
impl<'de> Deserialize<'de> for CatalogVersion
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
Auto Trait Implementations§
impl Freeze for CatalogVersion
impl RefUnwindSafe for CatalogVersion
impl Send for CatalogVersion
impl Sync for CatalogVersion
impl Unpin for CatalogVersion
impl UnwindSafe for CatalogVersion
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