pub struct ArchitectureComparisonInfo {
pub architecture_type_1: String,
pub architecture_type_2: String,
pub layer_depth_comparison: (usize, usize),
pub parameter_count_ratio: f64,
pub architectural_differences: Vec<String>,
pub complexity_comparison: String,
pub compatibility_assessment: String,
pub migration_difficulty: String,
pub performance_trade_offs: String,
pub recommendation: String,
pub deployment_readiness: String,
}
Fields§
§architecture_type_1: String
§architecture_type_2: String
§layer_depth_comparison: (usize, usize)
§parameter_count_ratio: f64
§architectural_differences: Vec<String>
§complexity_comparison: String
§compatibility_assessment: String
§migration_difficulty: String
§performance_trade_offs: String
§recommendation: String
§deployment_readiness: String
Trait Implementations§
Source§impl Clone for ArchitectureComparisonInfo
impl Clone for ArchitectureComparisonInfo
Source§fn clone(&self) -> ArchitectureComparisonInfo
fn clone(&self) -> ArchitectureComparisonInfo
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 ArchitectureComparisonInfo
impl Debug for ArchitectureComparisonInfo
impl StructuralPartialEq for ArchitectureComparisonInfo
Auto Trait Implementations§
impl Freeze for ArchitectureComparisonInfo
impl RefUnwindSafe for ArchitectureComparisonInfo
impl Send for ArchitectureComparisonInfo
impl Sync for ArchitectureComparisonInfo
impl Unpin for ArchitectureComparisonInfo
impl UnwindSafe for ArchitectureComparisonInfo
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<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