pub struct StoredContentManifestEntry {
pub content_ref: String,
pub media_type: String,
pub byte_len: usize,
pub redacted_summary: String,
}Expand description
In-memory stored content manifest entry fixture for SDK conformance tests. Use it to script deterministic behavior in memory; any transcript or endpoint mutation is documented on the method that performs it.
Fields§
§content_ref: StringContent reference where payload bytes or structured tool output are stored.
media_type: StringMedia type used by this record or request.
byte_len: usizeObserved byte length for the source, sidecar, or extracted record.
redacted_summary: StringRedacted human-readable summary safe for events, telemetry, and logs.
Trait Implementations§
Source§impl Clone for StoredContentManifestEntry
impl Clone for StoredContentManifestEntry
Source§fn clone(&self) -> StoredContentManifestEntry
fn clone(&self) -> StoredContentManifestEntry
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 StoredContentManifestEntry
impl Debug for StoredContentManifestEntry
Source§impl<'de> Deserialize<'de> for StoredContentManifestEntry
impl<'de> Deserialize<'de> for StoredContentManifestEntry
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
Source§impl PartialEq for StoredContentManifestEntry
impl PartialEq for StoredContentManifestEntry
Source§fn eq(&self, other: &StoredContentManifestEntry) -> bool
fn eq(&self, other: &StoredContentManifestEntry) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for StoredContentManifestEntry
impl StructuralPartialEq for StoredContentManifestEntry
Auto Trait Implementations§
impl Freeze for StoredContentManifestEntry
impl RefUnwindSafe for StoredContentManifestEntry
impl Send for StoredContentManifestEntry
impl Sync for StoredContentManifestEntry
impl Unpin for StoredContentManifestEntry
impl UnsafeUnpin for StoredContentManifestEntry
impl UnwindSafe for StoredContentManifestEntry
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