pub struct AdapterPath {
pub adapters: Vec<AdapterSpec>,
pub total_cost: u64,
pub effective_score: u64,
}Fields§
§adapters: Vec<AdapterSpec>§total_cost: u64§effective_score: u64Trait Implementations§
Source§impl Clone for AdapterPath
impl Clone for AdapterPath
Source§fn clone(&self) -> AdapterPath
fn clone(&self) -> AdapterPath
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 AdapterPath
impl Debug for AdapterPath
Source§impl<'de> Deserialize<'de> for AdapterPath
impl<'de> Deserialize<'de> for AdapterPath
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 PartialEq for AdapterPath
impl PartialEq for AdapterPath
Source§fn eq(&self, other: &AdapterPath) -> bool
fn eq(&self, other: &AdapterPath) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for AdapterPath
impl Serialize for AdapterPath
impl StructuralPartialEq for AdapterPath
Auto Trait Implementations§
impl Freeze for AdapterPath
impl RefUnwindSafe for AdapterPath
impl Send for AdapterPath
impl Sync for AdapterPath
impl Unpin for AdapterPath
impl UnsafeUnpin for AdapterPath
impl UnwindSafe for AdapterPath
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