pub struct RecallAssociateRequest {
pub header: Option<CMPHeader>,
pub record_id: Uuid,
pub association_types: Option<Vec<AssociationType>>,
pub depth: u32,
pub min_weight: f64,
pub limit: u32,
}Expand description
recall.associate request (CMP Spec §4.2).
Fields§
§header: Option<CMPHeader>§record_id: Uuid§association_types: Option<Vec<AssociationType>>§depth: u32§min_weight: f64§limit: u32Trait Implementations§
Source§impl Clone for RecallAssociateRequest
impl Clone for RecallAssociateRequest
Source§fn clone(&self) -> RecallAssociateRequest
fn clone(&self) -> RecallAssociateRequest
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 RecallAssociateRequest
impl Debug for RecallAssociateRequest
Source§impl<'de> Deserialize<'de> for RecallAssociateRequest
impl<'de> Deserialize<'de> for RecallAssociateRequest
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 RecallAssociateRequest
impl RefUnwindSafe for RecallAssociateRequest
impl Send for RecallAssociateRequest
impl Sync for RecallAssociateRequest
impl Unpin for RecallAssociateRequest
impl UnsafeUnpin for RecallAssociateRequest
impl UnwindSafe for RecallAssociateRequest
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