pub struct EncodeStoreResponse {
pub record_id: Uuid,
pub store: StoreType,
pub initial_fidelity: f64,
pub associations_created: u32,
}Expand description
encode.store response (CMP Spec §3.1).
Fields§
§record_id: Uuid§store: StoreType§initial_fidelity: f64§associations_created: u32Trait Implementations§
Source§impl Clone for EncodeStoreResponse
impl Clone for EncodeStoreResponse
Source§fn clone(&self) -> EncodeStoreResponse
fn clone(&self) -> EncodeStoreResponse
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 EncodeStoreResponse
impl Debug for EncodeStoreResponse
Source§impl<'de> Deserialize<'de> for EncodeStoreResponse
impl<'de> Deserialize<'de> for EncodeStoreResponse
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 EncodeStoreResponse
impl RefUnwindSafe for EncodeStoreResponse
impl Send for EncodeStoreResponse
impl Sync for EncodeStoreResponse
impl Unpin for EncodeStoreResponse
impl UnsafeUnpin for EncodeStoreResponse
impl UnwindSafe for EncodeStoreResponse
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