#[non_exhaustive]pub struct OtherReplayFrom {
pub type_: String,
pub meta: Option<Map<String, Value>>,
pub fields: BTreeMap<String, Value>,
}unstable_protocol_v2 only.Expand description
Custom or future replay cursor payload.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.type_: StringCustom or future replay cursor type.
Values beginning with _ are reserved for implementation-specific
extensions. Unknown values that do not begin with _ are reserved for
future ACP variants.
meta: Option<Map<String, Value>>The _meta property is reserved by ACP to allow clients and agents to attach additional metadata to their interactions. Implementations MUST NOT make assumptions about values at these keys.
See protocol docs: Extensibility
fields: BTreeMap<String, Value>Additional fields from the unknown replay cursor payload.
Implementations§
Source§impl OtherReplayFrom
impl OtherReplayFrom
Sourcepub fn new(
type_: impl Into<String>,
fields: BTreeMap<String, Value>,
) -> OtherReplayFrom
pub fn new( type_: impl Into<String>, fields: BTreeMap<String, Value>, ) -> OtherReplayFrom
Builds OtherReplayFrom from an unknown discriminator and preserves the remaining extension fields.
Sourcepub fn meta(self, meta: impl IntoOption<Map<String, Value>>) -> OtherReplayFrom
pub fn meta(self, meta: impl IntoOption<Map<String, Value>>) -> OtherReplayFrom
The _meta property is reserved by ACP to allow clients and agents to attach additional metadata to their interactions. Implementations MUST NOT make assumptions about values at these keys.
See protocol docs: Extensibility
Trait Implementations§
Source§impl Clone for OtherReplayFrom
impl Clone for OtherReplayFrom
Source§fn clone(&self) -> OtherReplayFrom
fn clone(&self) -> OtherReplayFrom
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Debug for OtherReplayFrom
impl Debug for OtherReplayFrom
Source§impl<'de> Deserialize<'de> for OtherReplayFrom
impl<'de> Deserialize<'de> for OtherReplayFrom
Source§fn deserialize<D>(
deserializer: D,
) -> Result<OtherReplayFrom, <D as Deserializer<'de>>::Error>where
D: Deserializer<'de>,
fn deserialize<D>(
deserializer: D,
) -> Result<OtherReplayFrom, <D as Deserializer<'de>>::Error>where
D: Deserializer<'de>,
impl Eq for OtherReplayFrom
Source§impl JsonSchema for OtherReplayFrom
impl JsonSchema for OtherReplayFrom
Source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Source§fn json_schema(generator: &mut SchemaGenerator) -> Schema
fn json_schema(generator: &mut SchemaGenerator) -> Schema
Source§fn inline_schema() -> bool
fn inline_schema() -> bool
$ref keyword. Read moreSource§impl PartialEq for OtherReplayFrom
impl PartialEq for OtherReplayFrom
Source§fn eq(&self, other: &OtherReplayFrom) -> bool
fn eq(&self, other: &OtherReplayFrom) -> bool
self and other values to be equal, and is used by ==.Source§impl Serialize for OtherReplayFrom
impl Serialize for OtherReplayFrom
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
impl StructuralPartialEq for OtherReplayFrom
Auto Trait Implementations§
impl Freeze for OtherReplayFrom
impl RefUnwindSafe for OtherReplayFrom
impl Send for OtherReplayFrom
impl Sync for OtherReplayFrom
impl Unpin for OtherReplayFrom
impl UnsafeUnpin for OtherReplayFrom
impl UnwindSafe for OtherReplayFrom
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
key and return true if they are equal.