pub struct BondsOutput {
pub uri: String,
pub hash: String,
pub synapse: String,
pub direction: String,
pub max_depth: u32,
pub max_depth_reached: bool,
pub count: usize,
pub bonds: Vec<Value>,
}Expand description
Result of bonds.
Fields§
§uri: String§hash: String§synapse: String§direction: String§max_depth: u32§max_depth_reached: bool§count: usize§bonds: Vec<Value>Trait Implementations§
Source§impl Clone for BondsOutput
impl Clone for BondsOutput
Source§fn clone(&self) -> BondsOutput
fn clone(&self) -> BondsOutput
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 BondsOutput
impl Debug for BondsOutput
Source§impl<'de> Deserialize<'de> for BondsOutput
impl<'de> Deserialize<'de> for BondsOutput
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
Auto Trait Implementations§
impl Freeze for BondsOutput
impl RefUnwindSafe for BondsOutput
impl Send for BondsOutput
impl Sync for BondsOutput
impl Unpin for BondsOutput
impl UnsafeUnpin for BondsOutput
impl UnwindSafe for BondsOutput
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