pub struct FieldCountRecord {
pub workspace_id: Option<String>,
pub endpoint: String,
pub method: String,
pub field_count: u32,
pub recorded_at: DateTime<Utc>,
}Expand description
Field count record for an endpoint
Fields§
§workspace_id: Option<String>Workspace ID (optional)
endpoint: StringEndpoint path
method: StringHTTP method
field_count: u32Number of fields in the contract
recorded_at: DateTime<Utc>When this count was recorded
Trait Implementations§
Source§impl Clone for FieldCountRecord
impl Clone for FieldCountRecord
Source§fn clone(&self) -> FieldCountRecord
fn clone(&self) -> FieldCountRecord
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 FieldCountRecord
impl Debug for FieldCountRecord
Source§impl<'de> Deserialize<'de> for FieldCountRecord
impl<'de> Deserialize<'de> for FieldCountRecord
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 FieldCountRecord
impl RefUnwindSafe for FieldCountRecord
impl Send for FieldCountRecord
impl Sync for FieldCountRecord
impl Unpin for FieldCountRecord
impl UnsafeUnpin for FieldCountRecord
impl UnwindSafe for FieldCountRecord
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