pub struct ManualAssociation {
pub target_id: Uuid,
pub association_type: AssociationType,
pub weight: f64,
}Expand description
Manual association hint provided during encoding.
Fields§
§target_id: Uuid§association_type: AssociationType§weight: f64Trait Implementations§
Source§impl Clone for ManualAssociation
impl Clone for ManualAssociation
Source§fn clone(&self) -> ManualAssociation
fn clone(&self) -> ManualAssociation
Returns a duplicate of the value. Read more
1.0.0 · 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 ManualAssociation
impl Debug for ManualAssociation
Source§impl<'de> Deserialize<'de> for ManualAssociation
impl<'de> Deserialize<'de> for ManualAssociation
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 ManualAssociation
impl RefUnwindSafe for ManualAssociation
impl Send for ManualAssociation
impl Sync for ManualAssociation
impl Unpin for ManualAssociation
impl UnsafeUnpin for ManualAssociation
impl UnwindSafe for ManualAssociation
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