pub struct LikelihoodMeta {
pub request_id: String,
pub timestamp: DateTime<Utc>,
pub processing_time_ms: u32,
pub out_of_network_records_count: u32,
}
Expand description
Metadata for likelihood responses
Fields§
§request_id: String
Unique request identifier
timestamp: DateTime<Utc>
Request timestamp in ISO 8601 format
processing_time_ms: u32
Processing time in milliseconds
out_of_network_records_count: u32
Number of out-of-network records analyzed
Trait Implementations§
Source§impl Clone for LikelihoodMeta
impl Clone for LikelihoodMeta
Source§fn clone(&self) -> LikelihoodMeta
fn clone(&self) -> LikelihoodMeta
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 LikelihoodMeta
impl Debug for LikelihoodMeta
Source§impl<'de> Deserialize<'de> for LikelihoodMeta
impl<'de> Deserialize<'de> for LikelihoodMeta
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 LikelihoodMeta
impl RefUnwindSafe for LikelihoodMeta
impl Send for LikelihoodMeta
impl Sync for LikelihoodMeta
impl Unpin for LikelihoodMeta
impl UnwindSafe for LikelihoodMeta
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