pub struct ThreadOutboxProviderManifest {
pub schema: ThreadOutboxProviderManifestSchema,
pub protocol_version: ThreadOutboxProviderProtocolVersion,
pub adapter_id: NonEmptyString,
pub provider: NonEmptyString,
pub name: NonEmptyString,
pub version: NonEmptyString,
pub supported_operations: Vec<ThreadOutboxProviderOperation>,
pub transport: ThreadOutboxProviderTransport,
pub credential_needs: Option<Vec<ThreadOutboxProviderCredentialNeed>>,
pub receipt_capabilities: ThreadOutboxProviderReceiptCapabilities,
pub redaction_capabilities: ThreadOutboxProviderRedactionCapabilities,
}Fields§
§schema: ThreadOutboxProviderManifestSchema§protocol_version: ThreadOutboxProviderProtocolVersion§adapter_id: NonEmptyString§provider: NonEmptyString§name: NonEmptyString§version: NonEmptyString§supported_operations: Vec<ThreadOutboxProviderOperation>§transport: ThreadOutboxProviderTransport§credential_needs: Option<Vec<ThreadOutboxProviderCredentialNeed>>§receipt_capabilities: ThreadOutboxProviderReceiptCapabilities§redaction_capabilities: ThreadOutboxProviderRedactionCapabilitiesTrait Implementations§
Source§impl Clone for ThreadOutboxProviderManifest
impl Clone for ThreadOutboxProviderManifest
Source§fn clone(&self) -> ThreadOutboxProviderManifest
fn clone(&self) -> ThreadOutboxProviderManifest
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 ThreadOutboxProviderManifest
impl Debug for ThreadOutboxProviderManifest
Source§impl<'de> Deserialize<'de> for ThreadOutboxProviderManifest
impl<'de> Deserialize<'de> for ThreadOutboxProviderManifest
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
impl Eq for ThreadOutboxProviderManifest
Source§impl PartialEq for ThreadOutboxProviderManifest
impl PartialEq for ThreadOutboxProviderManifest
Source§fn eq(&self, other: &ThreadOutboxProviderManifest) -> bool
fn eq(&self, other: &ThreadOutboxProviderManifest) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl RunxSchema for ThreadOutboxProviderManifest
impl RunxSchema for ThreadOutboxProviderManifest
Source§fn json_schema() -> Value
fn json_schema() -> Value
The inlined JSON Schema for this type.
impl StructuralPartialEq for ThreadOutboxProviderManifest
Auto Trait Implementations§
impl Freeze for ThreadOutboxProviderManifest
impl RefUnwindSafe for ThreadOutboxProviderManifest
impl Send for ThreadOutboxProviderManifest
impl Sync for ThreadOutboxProviderManifest
impl Unpin for ThreadOutboxProviderManifest
impl UnsafeUnpin for ThreadOutboxProviderManifest
impl UnwindSafe for ThreadOutboxProviderManifest
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