pub struct VersionedModel { /* private fields */ }Expand description
A versioned model containing metadata and artifact references
Implementations§
Source§impl VersionedModel
impl VersionedModel
Sourcepub fn new(
model_name: String,
version: String,
metadata: ModelMetadata,
artifact_ids: Vec<Uuid>,
) -> Self
pub fn new( model_name: String, version: String, metadata: ModelMetadata, artifact_ids: Vec<Uuid>, ) -> Self
Create a new versioned model
Sourcepub fn with_parent(
model_name: String,
version: String,
metadata: ModelMetadata,
artifact_ids: Vec<Uuid>,
parent_id: Uuid,
) -> Self
pub fn with_parent( model_name: String, version: String, metadata: ModelMetadata, artifact_ids: Vec<Uuid>, parent_id: Uuid, ) -> Self
Create a versioned model with parent
Sourcepub fn model_name(&self) -> &str
pub fn model_name(&self) -> &str
Get model name
Sourcepub fn metadata(&self) -> &ModelMetadata
pub fn metadata(&self) -> &ModelMetadata
Get metadata
Sourcepub fn artifact_ids(&self) -> &[Uuid]
pub fn artifact_ids(&self) -> &[Uuid]
Get artifact IDs
Sourcepub fn parent_version(&self) -> Option<Uuid>
pub fn parent_version(&self) -> Option<Uuid>
Get parent version ID
Sourcepub fn child_versions(&self) -> &[Uuid]
pub fn child_versions(&self) -> &[Uuid]
Get child version IDs
Sourcepub fn remove_child(&mut self, child_id: Uuid)
pub fn remove_child(&mut self, child_id: Uuid)
Remove child version
Sourcepub fn qualified_name(&self) -> String
pub fn qualified_name(&self) -> String
Get full qualified name
Sourcepub fn validate_version_format(&self) -> Result<()>
pub fn validate_version_format(&self) -> Result<()>
Validate version format
Trait Implementations§
Source§impl Clone for VersionedModel
impl Clone for VersionedModel
Source§fn clone(&self) -> VersionedModel
fn clone(&self) -> VersionedModel
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 VersionedModel
impl Debug for VersionedModel
Source§impl<'de> Deserialize<'de> for VersionedModel
impl<'de> Deserialize<'de> for VersionedModel
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 Ord for VersionedModel
impl Ord for VersionedModel
Source§impl PartialEq for VersionedModel
impl PartialEq for VersionedModel
Source§impl PartialOrd for VersionedModel
Version comparison for sorting
impl PartialOrd for VersionedModel
Version comparison for sorting
Source§impl Serialize for VersionedModel
impl Serialize for VersionedModel
impl Eq for VersionedModel
Auto Trait Implementations§
impl Freeze for VersionedModel
impl RefUnwindSafe for VersionedModel
impl Send for VersionedModel
impl Sync for VersionedModel
impl Unpin for VersionedModel
impl UnsafeUnpin for VersionedModel
impl UnwindSafe for VersionedModel
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
Source§impl<T> ConfigSerializable for Twhere
T: Serialize + for<'de> Deserialize<'de>,
impl<T> ConfigSerializable for Twhere
T: Serialize + for<'de> Deserialize<'de>,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.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