pub struct BondStatusRef {
pub uri: String,
pub relation: BondRelation,
pub bonded: Value,
}Expand description
A single bond status entry.
Fields§
§uri: String§relation: BondRelation§bonded: Valuetrue, false, or "excluded" for spawned_from/absorbed_from.
Trait Implementations§
Source§impl Clone for BondStatusRef
impl Clone for BondStatusRef
Source§fn clone(&self) -> BondStatusRef
fn clone(&self) -> BondStatusRef
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 BondStatusRef
impl Debug for BondStatusRef
Source§impl<'de> Deserialize<'de> for BondStatusRef
impl<'de> Deserialize<'de> for BondStatusRef
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 BondStatusRef
impl RefUnwindSafe for BondStatusRef
impl Send for BondStatusRef
impl Sync for BondStatusRef
impl Unpin for BondStatusRef
impl UnsafeUnpin for BondStatusRef
impl UnwindSafe for BondStatusRef
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