pub struct AlgorithmDescriptor {
pub name: String,
pub algorithm_version: String,
pub state_version: String,
}Expand description
Algorithm and state-format identity independent of product semantics.
Fields§
§name: StringStable algorithm name.
algorithm_version: StringAlgorithm implementation/version label.
state_version: StringState schema/version label.
Implementations§
Trait Implementations§
Source§impl Clone for AlgorithmDescriptor
impl Clone for AlgorithmDescriptor
Source§fn clone(&self) -> AlgorithmDescriptor
fn clone(&self) -> AlgorithmDescriptor
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 AlgorithmDescriptor
impl Debug for AlgorithmDescriptor
impl Eq for AlgorithmDescriptor
Source§impl PartialEq for AlgorithmDescriptor
impl PartialEq for AlgorithmDescriptor
impl StructuralPartialEq for AlgorithmDescriptor
Auto Trait Implementations§
impl Freeze for AlgorithmDescriptor
impl RefUnwindSafe for AlgorithmDescriptor
impl Send for AlgorithmDescriptor
impl Sync for AlgorithmDescriptor
impl Unpin for AlgorithmDescriptor
impl UnsafeUnpin for AlgorithmDescriptor
impl UnwindSafe for AlgorithmDescriptor
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