pub struct PairOutput {
pub proposals: Vec<LinkProposal>,
pub diagnostics: Vec<Diagnostic>,
}Fields§
§proposals: Vec<LinkProposal>§diagnostics: Vec<Diagnostic>Trait Implementations§
Source§impl Clone for PairOutput
impl Clone for PairOutput
Source§fn clone(&self) -> PairOutput
fn clone(&self) -> PairOutput
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 PairOutput
impl Debug for PairOutput
Source§impl Default for PairOutput
impl Default for PairOutput
Source§fn default() -> PairOutput
fn default() -> PairOutput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PairOutput
impl<'de> Deserialize<'de> for PairOutput
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 From<Vec<LinkProposal>> for PairOutput
impl From<Vec<LinkProposal>> for PairOutput
Source§fn from(proposals: Vec<LinkProposal>) -> Self
fn from(proposals: Vec<LinkProposal>) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for PairOutput
impl RefUnwindSafe for PairOutput
impl Send for PairOutput
impl Sync for PairOutput
impl Unpin for PairOutput
impl UnsafeUnpin for PairOutput
impl UnwindSafe for PairOutput
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