pub struct FrozenRoute {
pub provider: String,
pub model: String,
}Expand description
The exact provider/model a member is frozen to before any reasoning resolution runs. Nothing downstream may change these two strings.
Fields§
§provider: String§model: StringTrait Implementations§
Source§impl Clone for FrozenRoute
impl Clone for FrozenRoute
Source§fn clone(&self) -> FrozenRoute
fn clone(&self) -> FrozenRoute
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 FrozenRoute
impl Debug for FrozenRoute
Source§impl<'de> Deserialize<'de> for FrozenRoute
impl<'de> Deserialize<'de> for FrozenRoute
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
impl Eq for FrozenRoute
Source§impl PartialEq for FrozenRoute
impl PartialEq for FrozenRoute
Source§impl Serialize for FrozenRoute
impl Serialize for FrozenRoute
impl StructuralPartialEq for FrozenRoute
Auto Trait Implementations§
impl Freeze for FrozenRoute
impl RefUnwindSafe for FrozenRoute
impl Send for FrozenRoute
impl Sync for FrozenRoute
impl Unpin for FrozenRoute
impl UnsafeUnpin for FrozenRoute
impl UnwindSafe for FrozenRoute
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