repo
stringlengths
6
65
file_url
stringlengths
81
311
file_path
stringlengths
6
227
content
stringlengths
0
32.8k
language
stringclasses
1 value
license
stringclasses
7 values
commit_sha
stringlengths
40
40
retrieved_at
stringdate
2026-01-04 15:31:58
2026-01-04 20:25:31
truncated
bool
2 classes
openwallet-foundation/vcx
https://github.com/openwallet-foundation/vcx/blob/2d3034ed73ba8d49e0f72251b4c7cfb859a1efe7/aries/messages/src/msg_types/protocols/trust_ping.rs
aries/messages/src/msg_types/protocols/trust_ping.rs
use derive_more::From; use messages_macros::MessageType; use strum_macros::{AsRefStr, EnumString}; use transitive::Transitive; use super::Protocol; use crate::msg_types::{role::Role, MsgKindType}; #[derive(Copy, Clone, Debug, From, PartialEq, MessageType)] #[msg_type(protocol = "trust_ping")] pub enum TrustPingType {...
rust
Apache-2.0
2d3034ed73ba8d49e0f72251b4c7cfb859a1efe7
2026-01-04T20:24:59.602734Z
false
openwallet-foundation/vcx
https://github.com/openwallet-foundation/vcx/blob/2d3034ed73ba8d49e0f72251b4c7cfb859a1efe7/aries/messages/src/msg_types/protocols/discover_features.rs
aries/messages/src/msg_types/protocols/discover_features.rs
use derive_more::From; use messages_macros::MessageType; use strum_macros::{AsRefStr, EnumString}; use transitive::Transitive; use super::Protocol; use crate::msg_types::{role::Role, MsgKindType}; #[derive(Copy, Clone, Debug, From, PartialEq, MessageType)] #[msg_type(protocol = "discover-features")] pub enum Discover...
rust
Apache-2.0
2d3034ed73ba8d49e0f72251b4c7cfb859a1efe7
2026-01-04T20:24:59.602734Z
false
openwallet-foundation/vcx
https://github.com/openwallet-foundation/vcx/blob/2d3034ed73ba8d49e0f72251b4c7cfb859a1efe7/aries/messages/src/msg_types/protocols/out_of_band.rs
aries/messages/src/msg_types/protocols/out_of_band.rs
use derive_more::From; use messages_macros::MessageType; use strum_macros::{AsRefStr, EnumString}; use transitive::Transitive; use super::Protocol; use crate::msg_types::{role::Role, MsgKindType}; #[derive(Copy, Clone, Debug, From, PartialEq, MessageType)] #[msg_type(protocol = "out-of-band")] pub enum OutOfBandType ...
rust
Apache-2.0
2d3034ed73ba8d49e0f72251b4c7cfb859a1efe7
2026-01-04T20:24:59.602734Z
false
openwallet-foundation/vcx
https://github.com/openwallet-foundation/vcx/blob/2d3034ed73ba8d49e0f72251b4c7cfb859a1efe7/aries/messages/src/msg_types/protocols/pickup.rs
aries/messages/src/msg_types/protocols/pickup.rs
use derive_more::{From, TryInto}; use messages_macros::MessageType; use strum_macros::{AsRefStr, EnumString}; use transitive::Transitive; use super::Protocol; use crate::msg_types::{MsgKindType, Role}; #[derive(Copy, Clone, Debug, From, TryInto, PartialEq, MessageType)] #[msg_type(protocol = "messagepickup")] pub enu...
rust
Apache-2.0
2d3034ed73ba8d49e0f72251b4c7cfb859a1efe7
2026-01-04T20:24:59.602734Z
false
openwallet-foundation/vcx
https://github.com/openwallet-foundation/vcx/blob/2d3034ed73ba8d49e0f72251b4c7cfb859a1efe7/aries/messages/src/msg_types/protocols/did_exchange.rs
aries/messages/src/msg_types/protocols/did_exchange.rs
use derive_more::From; use messages_macros::MessageType; use strum_macros::{AsRefStr, EnumString}; use transitive::Transitive; use super::Protocol; use crate::msg_types::{role::Role, MsgKindType}; #[derive(Copy, Clone, Debug, From, PartialEq, MessageType)] #[msg_type(protocol = "didexchange")] pub enum DidExchangeTyp...
rust
Apache-2.0
2d3034ed73ba8d49e0f72251b4c7cfb859a1efe7
2026-01-04T20:24:59.602734Z
false
openwallet-foundation/vcx
https://github.com/openwallet-foundation/vcx/blob/2d3034ed73ba8d49e0f72251b4c7cfb859a1efe7/aries/messages/src/msg_types/protocols/cred_issuance.rs
aries/messages/src/msg_types/protocols/cred_issuance.rs
use derive_more::{From, TryInto}; use messages_macros::MessageType; use strum_macros::{AsRefStr, EnumString}; use transitive::Transitive; use super::Protocol; use crate::msg_types::{role::Role, MsgKindType}; #[derive(Copy, Clone, Debug, From, TryInto, PartialEq, MessageType)] #[msg_type(protocol = "issue-credential")...
rust
Apache-2.0
2d3034ed73ba8d49e0f72251b4c7cfb859a1efe7
2026-01-04T20:24:59.602734Z
false
openwallet-foundation/vcx
https://github.com/openwallet-foundation/vcx/blob/2d3034ed73ba8d49e0f72251b4c7cfb859a1efe7/aries/messages/src/msg_types/protocols/mod.rs
aries/messages/src/msg_types/protocols/mod.rs
use std::{fmt::Display, str::FromStr}; use derive_more::{From, TryInto}; use serde::{Deserialize, Serialize}; use shared::misc::utils::CowStr; use self::{ basic_message::BasicMessageType, connection::ConnectionType, coordinate_mediation::CoordinateMediationType, cred_issuance::CredentialIssuanceType, did_...
rust
Apache-2.0
2d3034ed73ba8d49e0f72251b4c7cfb859a1efe7
2026-01-04T20:24:59.602734Z
false
openwallet-foundation/vcx
https://github.com/openwallet-foundation/vcx/blob/2d3034ed73ba8d49e0f72251b4c7cfb859a1efe7/aries/messages/src/msg_types/protocols/present_proof.rs
aries/messages/src/msg_types/protocols/present_proof.rs
use derive_more::{From, TryInto}; use messages_macros::MessageType; use strum_macros::{AsRefStr, EnumString}; use transitive::Transitive; use super::Protocol; use crate::msg_types::{role::Role, MsgKindType}; #[derive(Copy, Clone, Debug, From, TryInto, PartialEq, MessageType)] #[msg_type(protocol = "present-proof")] p...
rust
Apache-2.0
2d3034ed73ba8d49e0f72251b4c7cfb859a1efe7
2026-01-04T20:24:59.602734Z
false
openwallet-foundation/vcx
https://github.com/openwallet-foundation/vcx/blob/2d3034ed73ba8d49e0f72251b4c7cfb859a1efe7/aries/messages/src/msg_types/protocols/report_problem.rs
aries/messages/src/msg_types/protocols/report_problem.rs
use derive_more::From; use messages_macros::MessageType; use strum_macros::{AsRefStr, EnumString}; use transitive::Transitive; use super::Protocol; use crate::msg_types::{role::Role, MsgKindType}; #[derive(Copy, Clone, Debug, From, PartialEq, MessageType)] #[msg_type(protocol = "report-problem")] pub enum ReportProbl...
rust
Apache-2.0
2d3034ed73ba8d49e0f72251b4c7cfb859a1efe7
2026-01-04T20:24:59.602734Z
false
openwallet-foundation/vcx
https://github.com/openwallet-foundation/vcx/blob/2d3034ed73ba8d49e0f72251b4c7cfb859a1efe7/aries/messages/src/msg_types/protocols/coordinate_mediation.rs
aries/messages/src/msg_types/protocols/coordinate_mediation.rs
use derive_more::{From, TryInto}; use messages_macros::MessageType; use strum_macros::{AsRefStr, EnumString}; use transitive::Transitive; use super::Protocol; use crate::msg_types::{MsgKindType, Role}; #[derive(Copy, Clone, Debug, From, TryInto, PartialEq, MessageType)] #[msg_type(protocol = "coordinate-mediation")] ...
rust
Apache-2.0
2d3034ed73ba8d49e0f72251b4c7cfb859a1efe7
2026-01-04T20:24:59.602734Z
false
openwallet-foundation/vcx
https://github.com/openwallet-foundation/vcx/blob/2d3034ed73ba8d49e0f72251b4c7cfb859a1efe7/aries/messages/src/msg_types/protocols/revocation.rs
aries/messages/src/msg_types/protocols/revocation.rs
use derive_more::From; use messages_macros::MessageType; use strum_macros::{AsRefStr, EnumString}; use transitive::Transitive; use super::Protocol; use crate::msg_types::{role::Role, MsgKindType}; #[derive(Copy, Clone, Debug, From, PartialEq, MessageType)] #[msg_type(protocol = "revocation_notification")] pub enum Re...
rust
Apache-2.0
2d3034ed73ba8d49e0f72251b4c7cfb859a1efe7
2026-01-04T20:24:59.602734Z
false
openwallet-foundation/vcx
https://github.com/openwallet-foundation/vcx/blob/2d3034ed73ba8d49e0f72251b4c7cfb859a1efe7/aries/messages/src/msg_fields/mod.rs
aries/messages/src/msg_fields/mod.rs
//! Module containing the actual messages data structures, apart from the `@type` field which is //! handled through types in [`crate::msg_types`]. pub mod protocols; pub mod traits;
rust
Apache-2.0
2d3034ed73ba8d49e0f72251b4c7cfb859a1efe7
2026-01-04T20:24:59.602734Z
false
openwallet-foundation/vcx
https://github.com/openwallet-foundation/vcx/blob/2d3034ed73ba8d49e0f72251b4c7cfb859a1efe7/aries/messages/src/msg_fields/traits.rs
aries/messages/src/msg_fields/traits.rs
use serde::{Deserializer, Serializer}; /// Trait used for postponing serialization/deserialization of a message. /// /// It's main purpose is to allow us to navigate through the [`crate::msg_types::Protocol`] /// and message kind to deduce which type we must deserialize to /// or which [`crate::msg_types::Protocol`] +...
rust
Apache-2.0
2d3034ed73ba8d49e0f72251b4c7cfb859a1efe7
2026-01-04T20:24:59.602734Z
false
openwallet-foundation/vcx
https://github.com/openwallet-foundation/vcx/blob/2d3034ed73ba8d49e0f72251b4c7cfb859a1efe7/aries/messages/src/msg_fields/protocols/routing.rs
aries/messages/src/msg_fields/protocols/routing.rs
//! Module containing the `mediator and relays` messages, as defined in the [RFC](<https://github.com/decentralized-identity/aries-rfcs/blob/main/concepts/0046-mediators-and-relays/README.md>). use serde::{Deserialize, Serialize}; use serde_json::Value; use typed_builder::TypedBuilder; use crate::{ misc::utils::i...
rust
Apache-2.0
2d3034ed73ba8d49e0f72251b4c7cfb859a1efe7
2026-01-04T20:24:59.602734Z
false
openwallet-foundation/vcx
https://github.com/openwallet-foundation/vcx/blob/2d3034ed73ba8d49e0f72251b4c7cfb859a1efe7/aries/messages/src/msg_fields/protocols/basic_message.rs
aries/messages/src/msg_fields/protocols/basic_message.rs
//! Module containing the `basic message` protocol messages, as defined in the [RFC](<https://github.com/decentralized-identity/aries-rfcs/blob/main/features/0095-basic-message/README.md>). use chrono::{DateTime, Utc}; use serde::{Deserialize, Serialize}; use typed_builder::TypedBuilder; use crate::{ decorators::...
rust
Apache-2.0
2d3034ed73ba8d49e0f72251b4c7cfb859a1efe7
2026-01-04T20:24:59.602734Z
false
openwallet-foundation/vcx
https://github.com/openwallet-foundation/vcx/blob/2d3034ed73ba8d49e0f72251b4c7cfb859a1efe7/aries/messages/src/msg_fields/protocols/mod.rs
aries/messages/src/msg_fields/protocols/mod.rs
pub mod basic_message; pub mod common; pub mod connection; pub mod coordinate_mediation; pub mod cred_issuance; pub mod did_exchange; pub mod discover_features; pub mod notification; pub mod out_of_band; pub mod pickup; pub mod present_proof; pub mod report_problem; pub mod revocation; pub mod routing; pub mod trust_pi...
rust
Apache-2.0
2d3034ed73ba8d49e0f72251b4c7cfb859a1efe7
2026-01-04T20:24:59.602734Z
false
openwallet-foundation/vcx
https://github.com/openwallet-foundation/vcx/blob/2d3034ed73ba8d49e0f72251b4c7cfb859a1efe7/aries/messages/src/msg_fields/protocols/report_problem.rs
aries/messages/src/msg_fields/protocols/report_problem.rs
//! Module containing the `report problem` protocol messages, as defined in the [RFC](<https://github.com/decentralized-identity/aries-rfcs/blob/main/features/0035-report-problem/README.md>). use std::{collections::HashMap, fmt::Display}; use serde::{ de::Error as DeError, ser::{Error as SerError, SerializeMa...
rust
Apache-2.0
2d3034ed73ba8d49e0f72251b4c7cfb859a1efe7
2026-01-04T20:24:59.602734Z
false
openwallet-foundation/vcx
https://github.com/openwallet-foundation/vcx/blob/2d3034ed73ba8d49e0f72251b4c7cfb859a1efe7/aries/messages/src/msg_fields/protocols/coordinate_mediation/mediate_request.rs
aries/messages/src/msg_fields/protocols/coordinate_mediation/mediate_request.rs
use serde::{Deserialize, Serialize}; use typed_builder::TypedBuilder; use crate::{decorators::thread::Thread, msg_parts::MsgParts}; /// https://github.com/decentralized-identity/aries-rfcs/blob/main/features/0211-route-coordination/README.md#mediation-request pub type MediateRequest = MsgParts<MediateRequestContent>;...
rust
Apache-2.0
2d3034ed73ba8d49e0f72251b4c7cfb859a1efe7
2026-01-04T20:24:59.602734Z
false
openwallet-foundation/vcx
https://github.com/openwallet-foundation/vcx/blob/2d3034ed73ba8d49e0f72251b4c7cfb859a1efe7/aries/messages/src/msg_fields/protocols/coordinate_mediation/mediate_deny.rs
aries/messages/src/msg_fields/protocols/coordinate_mediation/mediate_deny.rs
use serde::{Deserialize, Serialize}; use typed_builder::TypedBuilder; use crate::{decorators::thread::Thread, msg_parts::MsgParts}; /// https://github.com/decentralized-identity/aries-rfcs/blob/main/features/0211-route-coordination/README.md#mediation-deny pub type MediateDeny = MsgParts<MediateDenyContent, MediateDe...
rust
Apache-2.0
2d3034ed73ba8d49e0f72251b4c7cfb859a1efe7
2026-01-04T20:24:59.602734Z
false
openwallet-foundation/vcx
https://github.com/openwallet-foundation/vcx/blob/2d3034ed73ba8d49e0f72251b4c7cfb859a1efe7/aries/messages/src/msg_fields/protocols/coordinate_mediation/mediate_grant.rs
aries/messages/src/msg_fields/protocols/coordinate_mediation/mediate_grant.rs
use serde::{Deserialize, Serialize}; use typed_builder::TypedBuilder; use crate::{decorators::thread::Thread, msg_parts::MsgParts}; /// https://github.com/decentralized-identity/aries-rfcs/blob/main/features/0211-route-coordination/README.md#mediation-grant pub type MediateGrant = MsgParts<MediateGrantContent, Mediat...
rust
Apache-2.0
2d3034ed73ba8d49e0f72251b4c7cfb859a1efe7
2026-01-04T20:24:59.602734Z
false
openwallet-foundation/vcx
https://github.com/openwallet-foundation/vcx/blob/2d3034ed73ba8d49e0f72251b4c7cfb859a1efe7/aries/messages/src/msg_fields/protocols/coordinate_mediation/keylist_update_response.rs
aries/messages/src/msg_fields/protocols/coordinate_mediation/keylist_update_response.rs
use serde::{Deserialize, Serialize}; use typed_builder::TypedBuilder; use super::keylist_update::KeylistUpdateItemAction; use crate::{decorators::thread::Thread, msg_parts::MsgParts}; /// https://github.com/decentralized-identity/aries-rfcs/blob/main/features/0211-route-coordination/README.md#keylist-update-response ...
rust
Apache-2.0
2d3034ed73ba8d49e0f72251b4c7cfb859a1efe7
2026-01-04T20:24:59.602734Z
false
openwallet-foundation/vcx
https://github.com/openwallet-foundation/vcx/blob/2d3034ed73ba8d49e0f72251b4c7cfb859a1efe7/aries/messages/src/msg_fields/protocols/coordinate_mediation/keylist_query.rs
aries/messages/src/msg_fields/protocols/coordinate_mediation/keylist_query.rs
use serde::{Deserialize, Serialize}; use typed_builder::TypedBuilder; use crate::{decorators::thread::Thread, msg_parts::MsgParts}; /// https://github.com/decentralized-identity/aries-rfcs/blob/main/features/0211-route-coordination/README.md#key-list-query pub type KeylistQuery = MsgParts<KeylistQueryContent>; #[der...
rust
Apache-2.0
2d3034ed73ba8d49e0f72251b4c7cfb859a1efe7
2026-01-04T20:24:59.602734Z
false
openwallet-foundation/vcx
https://github.com/openwallet-foundation/vcx/blob/2d3034ed73ba8d49e0f72251b4c7cfb859a1efe7/aries/messages/src/msg_fields/protocols/coordinate_mediation/keylist_update.rs
aries/messages/src/msg_fields/protocols/coordinate_mediation/keylist_update.rs
use serde::{Deserialize, Serialize}; use typed_builder::TypedBuilder; use crate::{decorators::thread::Thread, msg_parts::MsgParts}; /// https://github.com/decentralized-identity/aries-rfcs/blob/main/features/0211-route-coordination/README.md#keylist-update pub type KeylistUpdate = MsgParts<KeylistUpdateContent>; #[d...
rust
Apache-2.0
2d3034ed73ba8d49e0f72251b4c7cfb859a1efe7
2026-01-04T20:24:59.602734Z
false
openwallet-foundation/vcx
https://github.com/openwallet-foundation/vcx/blob/2d3034ed73ba8d49e0f72251b4c7cfb859a1efe7/aries/messages/src/msg_fields/protocols/coordinate_mediation/mod.rs
aries/messages/src/msg_fields/protocols/coordinate_mediation/mod.rs
pub mod keylist; pub mod keylist_query; pub mod keylist_update; pub mod keylist_update_response; mod mediate_deny; mod mediate_grant; mod mediate_request; use derive_more::From; use serde::{de::Error, Deserialize, Deserializer, Serialize, Serializer}; pub use self::{ keylist::{Keylist, KeylistContent, KeylistDecor...
rust
Apache-2.0
2d3034ed73ba8d49e0f72251b4c7cfb859a1efe7
2026-01-04T20:24:59.602734Z
false
openwallet-foundation/vcx
https://github.com/openwallet-foundation/vcx/blob/2d3034ed73ba8d49e0f72251b4c7cfb859a1efe7/aries/messages/src/msg_fields/protocols/coordinate_mediation/keylist.rs
aries/messages/src/msg_fields/protocols/coordinate_mediation/keylist.rs
use serde::{Deserialize, Serialize}; use typed_builder::TypedBuilder; use crate::{decorators::thread::Thread, msg_parts::MsgParts}; /// https://github.com/decentralized-identity/aries-rfcs/blob/main/features/0211-route-coordination/README.md#key-list pub type Keylist = MsgParts<KeylistContent, KeylistDecorators>; #[...
rust
Apache-2.0
2d3034ed73ba8d49e0f72251b4c7cfb859a1efe7
2026-01-04T20:24:59.602734Z
false
openwallet-foundation/vcx
https://github.com/openwallet-foundation/vcx/blob/2d3034ed73ba8d49e0f72251b4c7cfb859a1efe7/aries/messages/src/msg_fields/protocols/discover_features/disclose.rs
aries/messages/src/msg_fields/protocols/discover_features/disclose.rs
use serde::{Deserialize, Serialize}; use shared::maybe_known::MaybeKnown; use typed_builder::TypedBuilder; use super::ProtocolDescriptor; use crate::{ decorators::{thread::Thread, timing::Timing}, msg_parts::MsgParts, msg_types::registry::PROTOCOL_REGISTRY, }; pub type Disclose = MsgParts<DiscloseContent,...
rust
Apache-2.0
2d3034ed73ba8d49e0f72251b4c7cfb859a1efe7
2026-01-04T20:24:59.602734Z
false
openwallet-foundation/vcx
https://github.com/openwallet-foundation/vcx/blob/2d3034ed73ba8d49e0f72251b4c7cfb859a1efe7/aries/messages/src/msg_fields/protocols/discover_features/mod.rs
aries/messages/src/msg_fields/protocols/discover_features/mod.rs
//! Module containing the `discover features` protocol messages, as defined in the [RFC](<https://github.com/decentralized-identity/aries-rfcs/blob/main/features/0031-discover-features/README.md>). pub mod disclose; pub mod query; use derive_more::From; use serde::{de::Error, Deserialize, Deserializer, Serialize, Ser...
rust
Apache-2.0
2d3034ed73ba8d49e0f72251b4c7cfb859a1efe7
2026-01-04T20:24:59.602734Z
false
openwallet-foundation/vcx
https://github.com/openwallet-foundation/vcx/blob/2d3034ed73ba8d49e0f72251b4c7cfb859a1efe7/aries/messages/src/msg_fields/protocols/discover_features/query.rs
aries/messages/src/msg_fields/protocols/discover_features/query.rs
use serde::{Deserialize, Serialize}; use shared::maybe_known::MaybeKnown; use typed_builder::TypedBuilder; use super::ProtocolDescriptor; use crate::{ decorators::timing::Timing, msg_parts::MsgParts, msg_types::registry::PROTOCOL_REGISTRY, }; pub type Query = MsgParts<QueryContent, QueryDecorators>; #[derive(Clo...
rust
Apache-2.0
2d3034ed73ba8d49e0f72251b4c7cfb859a1efe7
2026-01-04T20:24:59.602734Z
false
openwallet-foundation/vcx
https://github.com/openwallet-foundation/vcx/blob/2d3034ed73ba8d49e0f72251b4c7cfb859a1efe7/aries/messages/src/msg_fields/protocols/pickup/delivery_request.rs
aries/messages/src/msg_fields/protocols/pickup/delivery_request.rs
use serde::{Deserialize, Serialize}; use typed_builder::TypedBuilder; use crate::{ decorators::{thread::Thread, transport::Transport}, msg_parts::MsgParts, }; pub type DeliveryRequest = MsgParts<DeliveryRequestContent, DeliveryRequestDecorators>; #[derive(Clone, Debug, Deserialize, Serialize, Default, Partia...
rust
Apache-2.0
2d3034ed73ba8d49e0f72251b4c7cfb859a1efe7
2026-01-04T20:24:59.602734Z
false
openwallet-foundation/vcx
https://github.com/openwallet-foundation/vcx/blob/2d3034ed73ba8d49e0f72251b4c7cfb859a1efe7/aries/messages/src/msg_fields/protocols/pickup/messages_received.rs
aries/messages/src/msg_fields/protocols/pickup/messages_received.rs
use serde::{Deserialize, Serialize}; use typed_builder::TypedBuilder; use crate::{ decorators::{thread::Thread, transport::Transport}, msg_parts::MsgParts, }; pub type MessagesReceived = MsgParts<MessagesReceivedContent, MessagesReceivedDecorators>; #[derive(Clone, Debug, Deserialize, Serialize, Default, Par...
rust
Apache-2.0
2d3034ed73ba8d49e0f72251b4c7cfb859a1efe7
2026-01-04T20:24:59.602734Z
false
openwallet-foundation/vcx
https://github.com/openwallet-foundation/vcx/blob/2d3034ed73ba8d49e0f72251b4c7cfb859a1efe7/aries/messages/src/msg_fields/protocols/pickup/status.rs
aries/messages/src/msg_fields/protocols/pickup/status.rs
use serde::{Deserialize, Serialize}; use typed_builder::TypedBuilder; use crate::{ decorators::{thread::Thread, transport::Transport}, msg_parts::MsgParts, }; pub type Status = MsgParts<StatusContent, StatusDecorators>; #[derive(Clone, Debug, Deserialize, Serialize, Default, PartialEq, TypedBuilder)] pub str...
rust
Apache-2.0
2d3034ed73ba8d49e0f72251b4c7cfb859a1efe7
2026-01-04T20:24:59.602734Z
false
openwallet-foundation/vcx
https://github.com/openwallet-foundation/vcx/blob/2d3034ed73ba8d49e0f72251b4c7cfb859a1efe7/aries/messages/src/msg_fields/protocols/pickup/delivery.rs
aries/messages/src/msg_fields/protocols/pickup/delivery.rs
use serde::{Deserialize, Serialize}; use typed_builder::TypedBuilder; use crate::{ decorators::{attachment::Attachment, thread::Thread, transport::Transport}, msg_parts::MsgParts, }; pub type Delivery = MsgParts<DeliveryContent, DeliveryDecorators>; #[derive(Clone, Debug, Deserialize, Serialize, Default, Par...
rust
Apache-2.0
2d3034ed73ba8d49e0f72251b4c7cfb859a1efe7
2026-01-04T20:24:59.602734Z
false
openwallet-foundation/vcx
https://github.com/openwallet-foundation/vcx/blob/2d3034ed73ba8d49e0f72251b4c7cfb859a1efe7/aries/messages/src/msg_fields/protocols/pickup/status_request.rs
aries/messages/src/msg_fields/protocols/pickup/status_request.rs
use serde::{Deserialize, Serialize}; use typed_builder::TypedBuilder; use crate::{ decorators::{thread::Thread, transport::Transport}, msg_parts::MsgParts, }; pub type StatusRequest = MsgParts<StatusRequestContent, StatusRequestDecorators>; #[derive(Clone, Debug, Deserialize, Serialize, Default, PartialEq, T...
rust
Apache-2.0
2d3034ed73ba8d49e0f72251b4c7cfb859a1efe7
2026-01-04T20:24:59.602734Z
false
openwallet-foundation/vcx
https://github.com/openwallet-foundation/vcx/blob/2d3034ed73ba8d49e0f72251b4c7cfb859a1efe7/aries/messages/src/msg_fields/protocols/pickup/mod.rs
aries/messages/src/msg_fields/protocols/pickup/mod.rs
mod delivery; mod delivery_request; mod live_delivery_change; mod messages_received; mod status; mod status_request; use derive_more::From; use serde::{de::Error, Deserialize, Deserializer, Serialize, Serializer}; pub use self::{ delivery::{Delivery, DeliveryContent, DeliveryDecorators}, delivery_request::{Del...
rust
Apache-2.0
2d3034ed73ba8d49e0f72251b4c7cfb859a1efe7
2026-01-04T20:24:59.602734Z
false
openwallet-foundation/vcx
https://github.com/openwallet-foundation/vcx/blob/2d3034ed73ba8d49e0f72251b4c7cfb859a1efe7/aries/messages/src/msg_fields/protocols/pickup/live_delivery_change.rs
aries/messages/src/msg_fields/protocols/pickup/live_delivery_change.rs
use serde::{Deserialize, Serialize}; use typed_builder::TypedBuilder; use crate::{ decorators::{thread::Thread, transport::Transport}, msg_parts::MsgParts, }; pub type LiveDeliveryChange = MsgParts<LiveDeliveryChangeContent, LiveDeliveryChangeDecorators>; #[derive(Clone, Debug, Deserialize, Serialize, Defaul...
rust
Apache-2.0
2d3034ed73ba8d49e0f72251b4c7cfb859a1efe7
2026-01-04T20:24:59.602734Z
false
openwallet-foundation/vcx
https://github.com/openwallet-foundation/vcx/blob/2d3034ed73ba8d49e0f72251b4c7cfb859a1efe7/aries/messages/src/msg_fields/protocols/trust_ping/ping.rs
aries/messages/src/msg_fields/protocols/trust_ping/ping.rs
use serde::{Deserialize, Serialize}; use typed_builder::TypedBuilder; use crate::{ decorators::{thread::Thread, timing::Timing}, msg_parts::MsgParts, }; pub type Ping = MsgParts<PingContent, PingDecorators>; #[derive(Clone, Debug, Deserialize, Serialize, Default, PartialEq, TypedBuilder)] pub struct PingCont...
rust
Apache-2.0
2d3034ed73ba8d49e0f72251b4c7cfb859a1efe7
2026-01-04T20:24:59.602734Z
false
openwallet-foundation/vcx
https://github.com/openwallet-foundation/vcx/blob/2d3034ed73ba8d49e0f72251b4c7cfb859a1efe7/aries/messages/src/msg_fields/protocols/trust_ping/ping_response.rs
aries/messages/src/msg_fields/protocols/trust_ping/ping_response.rs
use serde::{Deserialize, Serialize}; use typed_builder::TypedBuilder; use crate::{ decorators::{thread::Thread, timing::Timing}, msg_parts::MsgParts, }; pub type PingResponse = MsgParts<PingResponseContent, PingResponseDecorators>; #[derive(Clone, Debug, Deserialize, Serialize, Default, PartialEq, TypedBuild...
rust
Apache-2.0
2d3034ed73ba8d49e0f72251b4c7cfb859a1efe7
2026-01-04T20:24:59.602734Z
false
openwallet-foundation/vcx
https://github.com/openwallet-foundation/vcx/blob/2d3034ed73ba8d49e0f72251b4c7cfb859a1efe7/aries/messages/src/msg_fields/protocols/trust_ping/mod.rs
aries/messages/src/msg_fields/protocols/trust_ping/mod.rs
//! Module containing the `trust ping` protocol messages, as defined in the [RFC](<https://github.com/decentralized-identity/aries-rfcs/blob/main/features/0048-trust-ping/README.md>). pub mod ping; pub mod ping_response; use derive_more::From; use serde::{de::Error, Deserialize, Deserializer, Serialize, Serializer}; ...
rust
Apache-2.0
2d3034ed73ba8d49e0f72251b4c7cfb859a1efe7
2026-01-04T20:24:59.602734Z
false
openwallet-foundation/vcx
https://github.com/openwallet-foundation/vcx/blob/2d3034ed73ba8d49e0f72251b4c7cfb859a1efe7/aries/messages/src/msg_fields/protocols/notification/problem_report.rs
aries/messages/src/msg_fields/protocols/notification/problem_report.rs
use serde::{Deserialize, Serialize}; use typed_builder::TypedBuilder; use crate::{ msg_fields::protocols::report_problem::{ ProblemReport, ProblemReportContent, ProblemReportDecorators, }, msg_parts::MsgParts, }; pub type NotificationProblemReport = MsgParts<NotificationProblemReportContent, P...
rust
Apache-2.0
2d3034ed73ba8d49e0f72251b4c7cfb859a1efe7
2026-01-04T20:24:59.602734Z
false
openwallet-foundation/vcx
https://github.com/openwallet-foundation/vcx/blob/2d3034ed73ba8d49e0f72251b4c7cfb859a1efe7/aries/messages/src/msg_fields/protocols/notification/ack.rs
aries/messages/src/msg_fields/protocols/notification/ack.rs
use serde::{Deserialize, Serialize}; use typed_builder::TypedBuilder; use crate::{ decorators::{thread::Thread, timing::Timing}, msg_parts::MsgParts, }; pub type Ack = MsgParts<AckContent, AckDecorators>; #[derive(Debug, Clone, Serialize, Deserialize, PartialEq, TypedBuilder)] #[builder(build_method(into))] ...
rust
Apache-2.0
2d3034ed73ba8d49e0f72251b4c7cfb859a1efe7
2026-01-04T20:24:59.602734Z
false
openwallet-foundation/vcx
https://github.com/openwallet-foundation/vcx/blob/2d3034ed73ba8d49e0f72251b4c7cfb859a1efe7/aries/messages/src/msg_fields/protocols/notification/mod.rs
aries/messages/src/msg_fields/protocols/notification/mod.rs
//! Module containing the `acks` messages, as defined in the [RFC](<https://github.com/decentralized-identity/aries-rfcs/blob/main/features/0015-acks/README.md>). pub mod ack; pub mod problem_report; use derive_more::From; use serde::{de::Error, Deserialize, Deserializer, Serialize, Serializer}; use self::{ ack:...
rust
Apache-2.0
2d3034ed73ba8d49e0f72251b4c7cfb859a1efe7
2026-01-04T20:24:59.602734Z
false
openwallet-foundation/vcx
https://github.com/openwallet-foundation/vcx/blob/2d3034ed73ba8d49e0f72251b4c7cfb859a1efe7/aries/messages/src/msg_fields/protocols/connection/response.rs
aries/messages/src/msg_fields/protocols/connection/response.rs
use serde::{Deserialize, Serialize}; use shared::misc::utils::CowStr; use typed_builder::TypedBuilder; use crate::{ decorators::{please_ack::PleaseAck, thread::Thread, timing::Timing}, msg_parts::MsgParts, msg_types::{ protocols::signature::{SignatureType, SignatureTypeV1, SignatureTypeV1_0}, ...
rust
Apache-2.0
2d3034ed73ba8d49e0f72251b4c7cfb859a1efe7
2026-01-04T20:24:59.602734Z
false
openwallet-foundation/vcx
https://github.com/openwallet-foundation/vcx/blob/2d3034ed73ba8d49e0f72251b4c7cfb859a1efe7/aries/messages/src/msg_fields/protocols/connection/problem_report.rs
aries/messages/src/msg_fields/protocols/connection/problem_report.rs
use serde::{Deserialize, Serialize}; use typed_builder::TypedBuilder; use crate::{ decorators::{localization::MsgLocalization, thread::Thread, timing::Timing}, msg_parts::MsgParts, }; pub type ProblemReport = MsgParts<ProblemReportContent, ProblemReportDecorators>; #[derive(Clone, Debug, Deserialize, Seriali...
rust
Apache-2.0
2d3034ed73ba8d49e0f72251b4c7cfb859a1efe7
2026-01-04T20:24:59.602734Z
false
openwallet-foundation/vcx
https://github.com/openwallet-foundation/vcx/blob/2d3034ed73ba8d49e0f72251b4c7cfb859a1efe7/aries/messages/src/msg_fields/protocols/connection/mod.rs
aries/messages/src/msg_fields/protocols/connection/mod.rs
//! Module containing the `connection` protocol messages, as defined in the [RFC](<https://github.com/decentralized-identity/aries-rfcs/blob/main/features/0160-connection-protocol/README.md>). pub mod invitation; pub mod problem_report; pub mod request; pub mod response; use derive_more::From; use diddoc_legacy::arie...
rust
Apache-2.0
2d3034ed73ba8d49e0f72251b4c7cfb859a1efe7
2026-01-04T20:24:59.602734Z
false
openwallet-foundation/vcx
https://github.com/openwallet-foundation/vcx/blob/2d3034ed73ba8d49e0f72251b4c7cfb859a1efe7/aries/messages/src/msg_fields/protocols/connection/request.rs
aries/messages/src/msg_fields/protocols/connection/request.rs
use serde::{Deserialize, Serialize}; use typed_builder::TypedBuilder; use super::ConnectionData; use crate::{ decorators::{thread::Thread, timing::Timing}, msg_parts::MsgParts, }; pub type Request = MsgParts<RequestContent, RequestDecorators>; #[derive(Clone, Debug, Deserialize, Serialize, PartialEq, TypedBu...
rust
Apache-2.0
2d3034ed73ba8d49e0f72251b4c7cfb859a1efe7
2026-01-04T20:24:59.602734Z
false
openwallet-foundation/vcx
https://github.com/openwallet-foundation/vcx/blob/2d3034ed73ba8d49e0f72251b4c7cfb859a1efe7/aries/messages/src/msg_fields/protocols/connection/invitation/pairwise.rs
aries/messages/src/msg_fields/protocols/connection/invitation/pairwise.rs
use did_parser_nom::Did; use serde::{Deserialize, Serialize}; use typed_builder::TypedBuilder; use url::Url; use super::InvitationContent; pub type PairwiseInvitationContent = PwInvitationContent<Url>; pub type PairwiseDidInvitationContent = PwInvitationContent<Did>; #[derive(Debug, Clone, Deserialize, Serialize, Pa...
rust
Apache-2.0
2d3034ed73ba8d49e0f72251b4c7cfb859a1efe7
2026-01-04T20:24:59.602734Z
false
openwallet-foundation/vcx
https://github.com/openwallet-foundation/vcx/blob/2d3034ed73ba8d49e0f72251b4c7cfb859a1efe7/aries/messages/src/msg_fields/protocols/connection/invitation/mod.rs
aries/messages/src/msg_fields/protocols/connection/invitation/mod.rs
pub mod pairwise; pub mod public; use derive_more::From; use did_parser_nom::Did; use serde::{Deserialize, Serialize}; use typed_builder::TypedBuilder; use url::Url; use self::{pairwise::PwInvitationContentBuilder, public::PublicInvitationContentBuilder}; pub use self::{ pairwise::{PairwiseDidInvitationContent, P...
rust
Apache-2.0
2d3034ed73ba8d49e0f72251b4c7cfb859a1efe7
2026-01-04T20:24:59.602734Z
false
openwallet-foundation/vcx
https://github.com/openwallet-foundation/vcx/blob/2d3034ed73ba8d49e0f72251b4c7cfb859a1efe7/aries/messages/src/msg_fields/protocols/connection/invitation/public.rs
aries/messages/src/msg_fields/protocols/connection/invitation/public.rs
use serde::{Deserialize, Serialize}; use typed_builder::TypedBuilder; use super::InvitationContent; #[derive(Debug, Clone, Deserialize, Serialize, PartialEq, TypedBuilder)] #[builder(build_method(into = InvitationContent))] pub struct PublicInvitationContent { pub label: String, pub did: String, } #[cfg(test...
rust
Apache-2.0
2d3034ed73ba8d49e0f72251b4c7cfb859a1efe7
2026-01-04T20:24:59.602734Z
false
openwallet-foundation/vcx
https://github.com/openwallet-foundation/vcx/blob/2d3034ed73ba8d49e0f72251b4c7cfb859a1efe7/aries/messages/src/msg_fields/protocols/common/mod.rs
aries/messages/src/msg_fields/protocols/common/mod.rs
pub mod attachment_format_specifier;
rust
Apache-2.0
2d3034ed73ba8d49e0f72251b4c7cfb859a1efe7
2026-01-04T20:24:59.602734Z
false
openwallet-foundation/vcx
https://github.com/openwallet-foundation/vcx/blob/2d3034ed73ba8d49e0f72251b4c7cfb859a1efe7/aries/messages/src/msg_fields/protocols/common/attachment_format_specifier.rs
aries/messages/src/msg_fields/protocols/common/attachment_format_specifier.rs
use serde::{Deserialize, Serialize}; use shared::maybe_known::MaybeKnown; use typed_builder::TypedBuilder; /// Specifies that a particular Attachment, with the id of `attach_id`, has the format of `format`. #[derive(Debug, Serialize, Deserialize, Clone, PartialEq, TypedBuilder)] #[serde(rename_all = "snake_case")] pub...
rust
Apache-2.0
2d3034ed73ba8d49e0f72251b4c7cfb859a1efe7
2026-01-04T20:24:59.602734Z
false
openwallet-foundation/vcx
https://github.com/openwallet-foundation/vcx/blob/2d3034ed73ba8d49e0f72251b4c7cfb859a1efe7/aries/messages/src/msg_fields/protocols/present_proof/mod.rs
aries/messages/src/msg_fields/protocols/present_proof/mod.rs
use derive_more::From; use self::{v1::PresentProofV1, v2::PresentProofV2}; pub mod v1; pub mod v2; #[derive(Clone, Debug, From, PartialEq)] pub enum PresentProof { V1(PresentProofV1), V2(PresentProofV2), }
rust
Apache-2.0
2d3034ed73ba8d49e0f72251b4c7cfb859a1efe7
2026-01-04T20:24:59.602734Z
false
openwallet-foundation/vcx
https://github.com/openwallet-foundation/vcx/blob/2d3034ed73ba8d49e0f72251b4c7cfb859a1efe7/aries/messages/src/msg_fields/protocols/present_proof/v1/propose.rs
aries/messages/src/msg_fields/protocols/present_proof/v1/propose.rs
use std::str::FromStr; use serde::{Deserialize, Serialize}; use shared::misc::utils::CowStr; use typed_builder::TypedBuilder; use crate::{ decorators::{thread::Thread, timing::Timing}, misc::MimeType, msg_parts::MsgParts, msg_types::{ protocols::present_proof::{PresentProofType, PresentProofTy...
rust
Apache-2.0
2d3034ed73ba8d49e0f72251b4c7cfb859a1efe7
2026-01-04T20:24:59.602734Z
false
openwallet-foundation/vcx
https://github.com/openwallet-foundation/vcx/blob/2d3034ed73ba8d49e0f72251b4c7cfb859a1efe7/aries/messages/src/msg_fields/protocols/present_proof/v1/problem_report.rs
aries/messages/src/msg_fields/protocols/present_proof/v1/problem_report.rs
use serde::{Deserialize, Serialize}; use typed_builder::TypedBuilder; use crate::{ msg_fields::protocols::report_problem::{ ProblemReport, ProblemReportContent, ProblemReportDecorators, }, msg_parts::MsgParts, }; pub type PresentProofV1ProblemReport = MsgParts<PresentProofV1ProblemReportConten...
rust
Apache-2.0
2d3034ed73ba8d49e0f72251b4c7cfb859a1efe7
2026-01-04T20:24:59.602734Z
false
openwallet-foundation/vcx
https://github.com/openwallet-foundation/vcx/blob/2d3034ed73ba8d49e0f72251b4c7cfb859a1efe7/aries/messages/src/msg_fields/protocols/present_proof/v1/ack.rs
aries/messages/src/msg_fields/protocols/present_proof/v1/ack.rs
use serde::{Deserialize, Serialize}; use typed_builder::TypedBuilder; use crate::{ msg_fields::protocols::notification::ack::{Ack, AckContent, AckDecorators}, msg_parts::MsgParts, }; pub type AckPresentationV1 = MsgParts<AckPresentationV1Content, AckDecorators>; #[derive(Clone, Debug, Deserialize, Serialize,...
rust
Apache-2.0
2d3034ed73ba8d49e0f72251b4c7cfb859a1efe7
2026-01-04T20:24:59.602734Z
false
openwallet-foundation/vcx
https://github.com/openwallet-foundation/vcx/blob/2d3034ed73ba8d49e0f72251b4c7cfb859a1efe7/aries/messages/src/msg_fields/protocols/present_proof/v1/mod.rs
aries/messages/src/msg_fields/protocols/present_proof/v1/mod.rs
//! Module containing the `present proof` protocol messages, as defined in the [RFC](<https://github.com/decentralized-identity/aries-rfcs/blob/main/features/0037-present-proof/README.md>). pub mod ack; pub mod present; pub mod problem_report; pub mod propose; pub mod request; use derive_more::From; use serde::{de::E...
rust
Apache-2.0
2d3034ed73ba8d49e0f72251b4c7cfb859a1efe7
2026-01-04T20:24:59.602734Z
false
openwallet-foundation/vcx
https://github.com/openwallet-foundation/vcx/blob/2d3034ed73ba8d49e0f72251b4c7cfb859a1efe7/aries/messages/src/msg_fields/protocols/present_proof/v1/request.rs
aries/messages/src/msg_fields/protocols/present_proof/v1/request.rs
use serde::{Deserialize, Serialize}; use typed_builder::TypedBuilder; use crate::{ decorators::{attachment::Attachment, thread::Thread, timing::Timing}, msg_parts::MsgParts, }; pub type RequestPresentationV1 = MsgParts<RequestPresentationV1Content, RequestPresentationV1Decorators>; #[derive(Clone, Debug,...
rust
Apache-2.0
2d3034ed73ba8d49e0f72251b4c7cfb859a1efe7
2026-01-04T20:24:59.602734Z
false
openwallet-foundation/vcx
https://github.com/openwallet-foundation/vcx/blob/2d3034ed73ba8d49e0f72251b4c7cfb859a1efe7/aries/messages/src/msg_fields/protocols/present_proof/v1/present.rs
aries/messages/src/msg_fields/protocols/present_proof/v1/present.rs
use serde::{Deserialize, Serialize}; use typed_builder::TypedBuilder; use crate::{ decorators::{attachment::Attachment, please_ack::PleaseAck, thread::Thread, timing::Timing}, msg_parts::MsgParts, }; pub type PresentationV1 = MsgParts<PresentationV1Content, PresentationV1Decorators>; #[derive(Clone, Debug, D...
rust
Apache-2.0
2d3034ed73ba8d49e0f72251b4c7cfb859a1efe7
2026-01-04T20:24:59.602734Z
false
openwallet-foundation/vcx
https://github.com/openwallet-foundation/vcx/blob/2d3034ed73ba8d49e0f72251b4c7cfb859a1efe7/aries/messages/src/msg_fields/protocols/present_proof/v2/propose.rs
aries/messages/src/msg_fields/protocols/present_proof/v2/propose.rs
use serde::{Deserialize, Serialize}; use typed_builder::TypedBuilder; use crate::{ decorators::{attachment::Attachment, thread::Thread, timing::Timing}, msg_fields::protocols::common::attachment_format_specifier::OptionalIdAttachmentFormatSpecifier, msg_parts::MsgParts, }; pub type ProposePresentationV2 =...
rust
Apache-2.0
2d3034ed73ba8d49e0f72251b4c7cfb859a1efe7
2026-01-04T20:24:59.602734Z
false
openwallet-foundation/vcx
https://github.com/openwallet-foundation/vcx/blob/2d3034ed73ba8d49e0f72251b4c7cfb859a1efe7/aries/messages/src/msg_fields/protocols/present_proof/v2/problem_report.rs
aries/messages/src/msg_fields/protocols/present_proof/v2/problem_report.rs
use serde::{Deserialize, Serialize}; use typed_builder::TypedBuilder; use crate::{ msg_fields::protocols::report_problem::{ ProblemReport, ProblemReportContent, ProblemReportDecorators, }, msg_parts::MsgParts, }; pub type PresentProofV2ProblemReport = MsgParts<PresentProofV2ProblemReportConten...
rust
Apache-2.0
2d3034ed73ba8d49e0f72251b4c7cfb859a1efe7
2026-01-04T20:24:59.602734Z
false
openwallet-foundation/vcx
https://github.com/openwallet-foundation/vcx/blob/2d3034ed73ba8d49e0f72251b4c7cfb859a1efe7/aries/messages/src/msg_fields/protocols/present_proof/v2/ack.rs
aries/messages/src/msg_fields/protocols/present_proof/v2/ack.rs
use serde::{Deserialize, Serialize}; use typed_builder::TypedBuilder; use crate::{ msg_fields::protocols::notification::ack::{Ack, AckContent, AckDecorators}, msg_parts::MsgParts, }; pub type AckPresentationV2 = MsgParts<AckPresentationV2Content, AckDecorators>; #[derive(Clone, Debug, Deserialize, Serialize,...
rust
Apache-2.0
2d3034ed73ba8d49e0f72251b4c7cfb859a1efe7
2026-01-04T20:24:59.602734Z
false
openwallet-foundation/vcx
https://github.com/openwallet-foundation/vcx/blob/2d3034ed73ba8d49e0f72251b4c7cfb859a1efe7/aries/messages/src/msg_fields/protocols/present_proof/v2/mod.rs
aries/messages/src/msg_fields/protocols/present_proof/v2/mod.rs
//! Module containing the `present proof` protocol messages, as defined in the [RFC](<https://github.com/decentralized-identity/aries-rfcs/blob/main/features/0037-present-proof/README.md>). pub mod ack; pub mod present; pub mod problem_report; pub mod propose; pub mod request; use derive_more::From; use serde::{de::E...
rust
Apache-2.0
2d3034ed73ba8d49e0f72251b4c7cfb859a1efe7
2026-01-04T20:24:59.602734Z
false
openwallet-foundation/vcx
https://github.com/openwallet-foundation/vcx/blob/2d3034ed73ba8d49e0f72251b4c7cfb859a1efe7/aries/messages/src/msg_fields/protocols/present_proof/v2/request.rs
aries/messages/src/msg_fields/protocols/present_proof/v2/request.rs
use serde::{Deserialize, Serialize}; use typed_builder::TypedBuilder; use crate::{ decorators::{attachment::Attachment, thread::Thread, timing::Timing}, msg_fields::protocols::common::attachment_format_specifier::AttachmentFormatSpecifier, msg_parts::MsgParts, }; pub type RequestPresentationV2 = MsgPa...
rust
Apache-2.0
2d3034ed73ba8d49e0f72251b4c7cfb859a1efe7
2026-01-04T20:24:59.602734Z
false
openwallet-foundation/vcx
https://github.com/openwallet-foundation/vcx/blob/2d3034ed73ba8d49e0f72251b4c7cfb859a1efe7/aries/messages/src/msg_fields/protocols/present_proof/v2/present.rs
aries/messages/src/msg_fields/protocols/present_proof/v2/present.rs
use serde::{Deserialize, Serialize}; use typed_builder::TypedBuilder; use crate::{ decorators::{attachment::Attachment, please_ack::PleaseAck, thread::Thread, timing::Timing}, msg_fields::protocols::common::attachment_format_specifier::AttachmentFormatSpecifier, msg_parts::MsgParts, }; pub type Presentati...
rust
Apache-2.0
2d3034ed73ba8d49e0f72251b4c7cfb859a1efe7
2026-01-04T20:24:59.602734Z
false
openwallet-foundation/vcx
https://github.com/openwallet-foundation/vcx/blob/2d3034ed73ba8d49e0f72251b4c7cfb859a1efe7/aries/messages/src/msg_fields/protocols/revocation/revoke.rs
aries/messages/src/msg_fields/protocols/revocation/revoke.rs
use serde::{Deserialize, Serialize}; use shared::maybe_known::MaybeKnown; use typed_builder::TypedBuilder; use crate::{ decorators::{please_ack::PleaseAck, thread::Thread, timing::Timing}, msg_parts::MsgParts, }; pub type Revoke = MsgParts<RevokeContent, RevokeDecorators>; #[derive(Clone, Debug, Deserialize,...
rust
Apache-2.0
2d3034ed73ba8d49e0f72251b4c7cfb859a1efe7
2026-01-04T20:24:59.602734Z
false
openwallet-foundation/vcx
https://github.com/openwallet-foundation/vcx/blob/2d3034ed73ba8d49e0f72251b4c7cfb859a1efe7/aries/messages/src/msg_fields/protocols/revocation/ack.rs
aries/messages/src/msg_fields/protocols/revocation/ack.rs
use serde::{Deserialize, Serialize}; use typed_builder::TypedBuilder; use crate::{ msg_fields::protocols::notification::ack::{Ack, AckContent, AckDecorators}, msg_parts::MsgParts, }; pub type AckRevoke = MsgParts<AckRevokeContent, AckDecorators>; #[derive(Clone, Debug, Deserialize, Serialize, PartialEq, Type...
rust
Apache-2.0
2d3034ed73ba8d49e0f72251b4c7cfb859a1efe7
2026-01-04T20:24:59.602734Z
false
openwallet-foundation/vcx
https://github.com/openwallet-foundation/vcx/blob/2d3034ed73ba8d49e0f72251b4c7cfb859a1efe7/aries/messages/src/msg_fields/protocols/revocation/mod.rs
aries/messages/src/msg_fields/protocols/revocation/mod.rs
//! Module containing the `revocation notification` protocol messages, as defined in the [RFC](<https://github.com/decentralized-identity/aries-rfcs/blob/main/features/0721-revocation-notification-v2/README.md>). pub mod ack; pub mod revoke; use derive_more::From; use serde::{de::Error, Deserialize, Deserializer, Ser...
rust
Apache-2.0
2d3034ed73ba8d49e0f72251b4c7cfb859a1efe7
2026-01-04T20:24:59.602734Z
false
openwallet-foundation/vcx
https://github.com/openwallet-foundation/vcx/blob/2d3034ed73ba8d49e0f72251b4c7cfb859a1efe7/aries/messages/src/msg_fields/protocols/did_exchange/mod.rs
aries/messages/src/msg_fields/protocols/did_exchange/mod.rs
use derive_more::From; use v1_0::DidExchangeV1_0; use v1_1::DidExchangeV1_1; pub mod v1_0; pub mod v1_1; pub mod v1_x; #[derive(Clone, Debug, From, PartialEq)] pub enum DidExchange { V1_0(DidExchangeV1_0), V1_1(DidExchangeV1_1), }
rust
Apache-2.0
2d3034ed73ba8d49e0f72251b4c7cfb859a1efe7
2026-01-04T20:24:59.602734Z
false
openwallet-foundation/vcx
https://github.com/openwallet-foundation/vcx/blob/2d3034ed73ba8d49e0f72251b4c7cfb859a1efe7/aries/messages/src/msg_fields/protocols/did_exchange/v1_0/complete.rs
aries/messages/src/msg_fields/protocols/did_exchange/v1_0/complete.rs
use shared::misc::serde_ignored::SerdeIgnored as NoContent; use crate::{ msg_fields::protocols::did_exchange::v1_x::complete::CompleteDecorators, msg_parts::MsgParts, }; /// Alias type for DIDExchange v1.0 Complete message. /// Note that since this inherits from the V1.X message, the direct serialization /// of t...
rust
Apache-2.0
2d3034ed73ba8d49e0f72251b4c7cfb859a1efe7
2026-01-04T20:24:59.602734Z
false
openwallet-foundation/vcx
https://github.com/openwallet-foundation/vcx/blob/2d3034ed73ba8d49e0f72251b4c7cfb859a1efe7/aries/messages/src/msg_fields/protocols/did_exchange/v1_0/response.rs
aries/messages/src/msg_fields/protocols/did_exchange/v1_0/response.rs
use serde::{Deserialize, Serialize}; use typed_builder::TypedBuilder; use crate::{ decorators::attachment::Attachment, msg_fields::protocols::did_exchange::v1_x::response::ResponseDecorators, msg_parts::MsgParts, }; pub type Response = MsgParts<ResponseContent, ResponseDecorators>; #[derive(Clone, Debug, Des...
rust
Apache-2.0
2d3034ed73ba8d49e0f72251b4c7cfb859a1efe7
2026-01-04T20:24:59.602734Z
false
openwallet-foundation/vcx
https://github.com/openwallet-foundation/vcx/blob/2d3034ed73ba8d49e0f72251b4c7cfb859a1efe7/aries/messages/src/msg_fields/protocols/did_exchange/v1_0/problem_report.rs
aries/messages/src/msg_fields/protocols/did_exchange/v1_0/problem_report.rs
use crate::{ msg_fields::protocols::did_exchange::v1_x::problem_report::{ ProblemReportContent, ProblemReportDecorators, }, msg_parts::MsgParts, }; /// Alias type for DIDExchange v1.0 Problem Report message. /// Note that since this inherits from the V1.X message, the direct serialization /// of th...
rust
Apache-2.0
2d3034ed73ba8d49e0f72251b4c7cfb859a1efe7
2026-01-04T20:24:59.602734Z
false
openwallet-foundation/vcx
https://github.com/openwallet-foundation/vcx/blob/2d3034ed73ba8d49e0f72251b4c7cfb859a1efe7/aries/messages/src/msg_fields/protocols/did_exchange/v1_0/mod.rs
aries/messages/src/msg_fields/protocols/did_exchange/v1_0/mod.rs
pub mod complete; pub mod problem_report; pub mod request; pub mod response; use derive_more::From; use serde::{de::Error, Deserialize, Serialize}; use self::{ complete::Complete, problem_report::ProblemReport, request::Request, response::{Response, ResponseContent}, }; use super::{v1_x::response::Res...
rust
Apache-2.0
2d3034ed73ba8d49e0f72251b4c7cfb859a1efe7
2026-01-04T20:24:59.602734Z
false
openwallet-foundation/vcx
https://github.com/openwallet-foundation/vcx/blob/2d3034ed73ba8d49e0f72251b4c7cfb859a1efe7/aries/messages/src/msg_fields/protocols/did_exchange/v1_0/request.rs
aries/messages/src/msg_fields/protocols/did_exchange/v1_0/request.rs
use crate::{ msg_fields::protocols::did_exchange::v1_x::request::{RequestContent, RequestDecorators}, msg_parts::MsgParts, }; /// Alias type for DIDExchange v1.0 Request message. /// Note that since this inherits from the V1.X message, the direct serialization /// of this Request is not recommended, as it will...
rust
Apache-2.0
2d3034ed73ba8d49e0f72251b4c7cfb859a1efe7
2026-01-04T20:24:59.602734Z
false
openwallet-foundation/vcx
https://github.com/openwallet-foundation/vcx/blob/2d3034ed73ba8d49e0f72251b4c7cfb859a1efe7/aries/messages/src/msg_fields/protocols/did_exchange/v1_x/complete.rs
aries/messages/src/msg_fields/protocols/did_exchange/v1_x/complete.rs
use serde::{Deserialize, Serialize}; use shared::misc::serde_ignored::SerdeIgnored as NoContent; use typed_builder::TypedBuilder; use super::DidExchangeV1MessageVariant; use crate::{ decorators::{thread::Thread, timing::Timing}, msg_parts::MsgParts, }; /// Alias type for the shared DIDExchange v1.X complete m...
rust
Apache-2.0
2d3034ed73ba8d49e0f72251b4c7cfb859a1efe7
2026-01-04T20:24:59.602734Z
false
openwallet-foundation/vcx
https://github.com/openwallet-foundation/vcx/blob/2d3034ed73ba8d49e0f72251b4c7cfb859a1efe7/aries/messages/src/msg_fields/protocols/did_exchange/v1_x/response.rs
aries/messages/src/msg_fields/protocols/did_exchange/v1_x/response.rs
use serde::{Deserialize, Serialize}; use typed_builder::TypedBuilder; use super::DidExchangeV1MessageVariant; use crate::{ decorators::{thread::Thread, timing::Timing}, msg_fields::protocols::did_exchange::{ v1_0::response::Response as ResponseV1_0, v1_1::response::{Response as ResponseV1_1, Re...
rust
Apache-2.0
2d3034ed73ba8d49e0f72251b4c7cfb859a1efe7
2026-01-04T20:24:59.602734Z
false
openwallet-foundation/vcx
https://github.com/openwallet-foundation/vcx/blob/2d3034ed73ba8d49e0f72251b4c7cfb859a1efe7/aries/messages/src/msg_fields/protocols/did_exchange/v1_x/problem_report.rs
aries/messages/src/msg_fields/protocols/did_exchange/v1_x/problem_report.rs
use serde::{Deserialize, Serialize}; use typed_builder::TypedBuilder; use super::DidExchangeV1MessageVariant; use crate::{ decorators::{localization::MsgLocalization, thread::Thread, timing::Timing}, msg_parts::MsgParts, }; /// Alias type for the shared DIDExchange v1.X problem report message type. /// Note t...
rust
Apache-2.0
2d3034ed73ba8d49e0f72251b4c7cfb859a1efe7
2026-01-04T20:24:59.602734Z
false
openwallet-foundation/vcx
https://github.com/openwallet-foundation/vcx/blob/2d3034ed73ba8d49e0f72251b4c7cfb859a1efe7/aries/messages/src/msg_fields/protocols/did_exchange/v1_x/mod.rs
aries/messages/src/msg_fields/protocols/did_exchange/v1_x/mod.rs
//! Common components for V1.X DIDExchange messages (v1.0 & v1.1). //! Necessary to prevent duplicated code, since most types between v1.0 & v1.1 are identical use serde::Serialize; use super::{v1_0::DidExchangeV1_0, v1_1::DidExchangeV1_1, DidExchange}; use crate::{msg_types::protocols::did_exchange::DidExchangeTypeV...
rust
Apache-2.0
2d3034ed73ba8d49e0f72251b4c7cfb859a1efe7
2026-01-04T20:24:59.602734Z
false
openwallet-foundation/vcx
https://github.com/openwallet-foundation/vcx/blob/2d3034ed73ba8d49e0f72251b4c7cfb859a1efe7/aries/messages/src/msg_fields/protocols/did_exchange/v1_x/request.rs
aries/messages/src/msg_fields/protocols/did_exchange/v1_x/request.rs
use serde::{Deserialize, Serialize}; use shared::maybe_known::MaybeKnown; use typed_builder::TypedBuilder; use super::DidExchangeV1MessageVariant; use crate::{ decorators::{ attachment::Attachment, thread::{Thread, ThreadGoalCode}, timing::Timing, }, msg_parts::MsgParts, }; /// Ali...
rust
Apache-2.0
2d3034ed73ba8d49e0f72251b4c7cfb859a1efe7
2026-01-04T20:24:59.602734Z
false
openwallet-foundation/vcx
https://github.com/openwallet-foundation/vcx/blob/2d3034ed73ba8d49e0f72251b4c7cfb859a1efe7/aries/messages/src/msg_fields/protocols/did_exchange/v1_1/complete.rs
aries/messages/src/msg_fields/protocols/did_exchange/v1_1/complete.rs
use shared::misc::serde_ignored::SerdeIgnored as NoContent; use crate::{ msg_fields::protocols::did_exchange::v1_x::complete::CompleteDecorators, msg_parts::MsgParts, }; /// Alias type for DIDExchange v1.1 Complete message. /// Note that since this inherits from the V1.X message, the direct serialization /// of t...
rust
Apache-2.0
2d3034ed73ba8d49e0f72251b4c7cfb859a1efe7
2026-01-04T20:24:59.602734Z
false
openwallet-foundation/vcx
https://github.com/openwallet-foundation/vcx/blob/2d3034ed73ba8d49e0f72251b4c7cfb859a1efe7/aries/messages/src/msg_fields/protocols/did_exchange/v1_1/response.rs
aries/messages/src/msg_fields/protocols/did_exchange/v1_1/response.rs
use serde::{Deserialize, Serialize}; use typed_builder::TypedBuilder; use crate::{ decorators::attachment::Attachment, msg_fields::protocols::did_exchange::v1_x::response::ResponseDecorators, msg_parts::MsgParts, }; pub type Response = MsgParts<ResponseContent, ResponseDecorators>; #[derive(Clone, Debug, Des...
rust
Apache-2.0
2d3034ed73ba8d49e0f72251b4c7cfb859a1efe7
2026-01-04T20:24:59.602734Z
false
openwallet-foundation/vcx
https://github.com/openwallet-foundation/vcx/blob/2d3034ed73ba8d49e0f72251b4c7cfb859a1efe7/aries/messages/src/msg_fields/protocols/did_exchange/v1_1/problem_report.rs
aries/messages/src/msg_fields/protocols/did_exchange/v1_1/problem_report.rs
use crate::{ msg_fields::protocols::did_exchange::v1_x::problem_report::{ ProblemReportContent, ProblemReportDecorators, }, msg_parts::MsgParts, }; /// Alias type for DIDExchange v1.1 problem report message. /// Note that since this inherits from the V1.X message, the direct serialization /// of th...
rust
Apache-2.0
2d3034ed73ba8d49e0f72251b4c7cfb859a1efe7
2026-01-04T20:24:59.602734Z
false
openwallet-foundation/vcx
https://github.com/openwallet-foundation/vcx/blob/2d3034ed73ba8d49e0f72251b4c7cfb859a1efe7/aries/messages/src/msg_fields/protocols/did_exchange/v1_1/mod.rs
aries/messages/src/msg_fields/protocols/did_exchange/v1_1/mod.rs
pub mod complete; pub mod problem_report; pub mod request; pub mod response; use derive_more::From; use serde::{de::Error, Deserialize, Serialize}; use self::{ complete::Complete, problem_report::ProblemReport, request::Request, response::{Response, ResponseContent}, }; use super::{v1_x::response::Res...
rust
Apache-2.0
2d3034ed73ba8d49e0f72251b4c7cfb859a1efe7
2026-01-04T20:24:59.602734Z
false
openwallet-foundation/vcx
https://github.com/openwallet-foundation/vcx/blob/2d3034ed73ba8d49e0f72251b4c7cfb859a1efe7/aries/messages/src/msg_fields/protocols/did_exchange/v1_1/request.rs
aries/messages/src/msg_fields/protocols/did_exchange/v1_1/request.rs
use crate::{ msg_fields::protocols::did_exchange::v1_x::request::{RequestContent, RequestDecorators}, msg_parts::MsgParts, }; /// Alias type for DIDExchange v1.1 request message. /// Note that since this inherits from the V1.X message, the direct serialization /// of this message type is not recommended, as it...
rust
Apache-2.0
2d3034ed73ba8d49e0f72251b4c7cfb859a1efe7
2026-01-04T20:24:59.602734Z
false
openwallet-foundation/vcx
https://github.com/openwallet-foundation/vcx/blob/2d3034ed73ba8d49e0f72251b4c7cfb859a1efe7/aries/messages/src/msg_fields/protocols/cred_issuance/mod.rs
aries/messages/src/msg_fields/protocols/cred_issuance/mod.rs
use derive_more::From; use self::{v1::CredentialIssuanceV1, v2::CredentialIssuanceV2}; pub mod common; pub mod v1; pub mod v2; #[derive(Clone, Debug, From, PartialEq)] pub enum CredentialIssuance { V1(CredentialIssuanceV1), V2(CredentialIssuanceV2), }
rust
Apache-2.0
2d3034ed73ba8d49e0f72251b4c7cfb859a1efe7
2026-01-04T20:24:59.602734Z
false
openwallet-foundation/vcx
https://github.com/openwallet-foundation/vcx/blob/2d3034ed73ba8d49e0f72251b4c7cfb859a1efe7/aries/messages/src/msg_fields/protocols/cred_issuance/v1/problem_report.rs
aries/messages/src/msg_fields/protocols/cred_issuance/v1/problem_report.rs
use serde::{Deserialize, Serialize}; use typed_builder::TypedBuilder; use crate::{ msg_fields::protocols::report_problem::{ ProblemReport, ProblemReportContent, ProblemReportDecorators, }, msg_parts::MsgParts, }; pub type CredIssuanceV1ProblemReport = MsgParts<CredIssuanceV1ProblemReportConten...
rust
Apache-2.0
2d3034ed73ba8d49e0f72251b4c7cfb859a1efe7
2026-01-04T20:24:59.602734Z
false
openwallet-foundation/vcx
https://github.com/openwallet-foundation/vcx/blob/2d3034ed73ba8d49e0f72251b4c7cfb859a1efe7/aries/messages/src/msg_fields/protocols/cred_issuance/v1/request_credential.rs
aries/messages/src/msg_fields/protocols/cred_issuance/v1/request_credential.rs
use serde::{Deserialize, Serialize}; use typed_builder::TypedBuilder; use crate::{ decorators::{attachment::Attachment, thread::Thread, timing::Timing}, msg_parts::MsgParts, }; pub type RequestCredentialV1 = MsgParts<RequestCredentialV1Content, RequestCredentialV1Decorators>; #[derive(Clone, Debug, Deseriali...
rust
Apache-2.0
2d3034ed73ba8d49e0f72251b4c7cfb859a1efe7
2026-01-04T20:24:59.602734Z
false
openwallet-foundation/vcx
https://github.com/openwallet-foundation/vcx/blob/2d3034ed73ba8d49e0f72251b4c7cfb859a1efe7/aries/messages/src/msg_fields/protocols/cred_issuance/v1/ack.rs
aries/messages/src/msg_fields/protocols/cred_issuance/v1/ack.rs
use serde::{Deserialize, Serialize}; use typed_builder::TypedBuilder; use crate::{ msg_fields::protocols::notification::ack::{Ack, AckContent, AckDecorators}, msg_parts::MsgParts, }; pub type AckCredentialV1 = MsgParts<AckCredentialV1Content, AckDecorators>; #[derive(Clone, Debug, Deserialize, Serialize, Par...
rust
Apache-2.0
2d3034ed73ba8d49e0f72251b4c7cfb859a1efe7
2026-01-04T20:24:59.602734Z
false
openwallet-foundation/vcx
https://github.com/openwallet-foundation/vcx/blob/2d3034ed73ba8d49e0f72251b4c7cfb859a1efe7/aries/messages/src/msg_fields/protocols/cred_issuance/v1/issue_credential.rs
aries/messages/src/msg_fields/protocols/cred_issuance/v1/issue_credential.rs
use serde::{Deserialize, Serialize}; use typed_builder::TypedBuilder; use crate::{ decorators::{attachment::Attachment, please_ack::PleaseAck, thread::Thread, timing::Timing}, msg_parts::MsgParts, }; pub type IssueCredentialV1 = MsgParts<IssueCredentialV1Content, IssueCredentialV1Decorators>; #[derive(Clone,...
rust
Apache-2.0
2d3034ed73ba8d49e0f72251b4c7cfb859a1efe7
2026-01-04T20:24:59.602734Z
false
openwallet-foundation/vcx
https://github.com/openwallet-foundation/vcx/blob/2d3034ed73ba8d49e0f72251b4c7cfb859a1efe7/aries/messages/src/msg_fields/protocols/cred_issuance/v1/offer_credential.rs
aries/messages/src/msg_fields/protocols/cred_issuance/v1/offer_credential.rs
use serde::{Deserialize, Serialize}; use typed_builder::TypedBuilder; use super::CredentialPreviewV1; use crate::{ decorators::{attachment::Attachment, thread::Thread, timing::Timing}, msg_parts::MsgParts, }; pub type OfferCredentialV1 = MsgParts<OfferCredentialV1Content, OfferCredentialV1Decorators>; #[deri...
rust
Apache-2.0
2d3034ed73ba8d49e0f72251b4c7cfb859a1efe7
2026-01-04T20:24:59.602734Z
false
openwallet-foundation/vcx
https://github.com/openwallet-foundation/vcx/blob/2d3034ed73ba8d49e0f72251b4c7cfb859a1efe7/aries/messages/src/msg_fields/protocols/cred_issuance/v1/mod.rs
aries/messages/src/msg_fields/protocols/cred_issuance/v1/mod.rs
//! Module containing the `issue credential` protocol messages, as defined in the [RFC](<https://github.com/decentralized-identity/aries-rfcs/blob/main/features/0036-issue-credential/README.md>). pub mod ack; pub mod issue_credential; pub mod offer_credential; pub mod problem_report; pub mod propose_credential; pub mo...
rust
Apache-2.0
2d3034ed73ba8d49e0f72251b4c7cfb859a1efe7
2026-01-04T20:24:59.602734Z
false
openwallet-foundation/vcx
https://github.com/openwallet-foundation/vcx/blob/2d3034ed73ba8d49e0f72251b4c7cfb859a1efe7/aries/messages/src/msg_fields/protocols/cred_issuance/v1/propose_credential.rs
aries/messages/src/msg_fields/protocols/cred_issuance/v1/propose_credential.rs
use serde::{Deserialize, Serialize}; use typed_builder::TypedBuilder; use super::CredentialPreviewV1; use crate::{ decorators::{thread::Thread, timing::Timing}, msg_parts::MsgParts, }; pub type ProposeCredentialV1 = MsgParts<ProposeCredentialV1Content, ProposeCredentialV1Decorators>; #[derive(Clone, Debug, D...
rust
Apache-2.0
2d3034ed73ba8d49e0f72251b4c7cfb859a1efe7
2026-01-04T20:24:59.602734Z
false
openwallet-foundation/vcx
https://github.com/openwallet-foundation/vcx/blob/2d3034ed73ba8d49e0f72251b4c7cfb859a1efe7/aries/messages/src/msg_fields/protocols/cred_issuance/common/mod.rs
aries/messages/src/msg_fields/protocols/cred_issuance/common/mod.rs
use serde::{Deserialize, Serialize}; use typed_builder::TypedBuilder; use crate::misc::MimeType; #[derive(Debug, Serialize, Deserialize, Clone, PartialEq, TypedBuilder)] #[serde(rename_all = "kebab-case")] pub struct CredentialAttr { pub name: String, pub value: String, #[builder(default, setter(strip_opt...
rust
Apache-2.0
2d3034ed73ba8d49e0f72251b4c7cfb859a1efe7
2026-01-04T20:24:59.602734Z
false
openwallet-foundation/vcx
https://github.com/openwallet-foundation/vcx/blob/2d3034ed73ba8d49e0f72251b4c7cfb859a1efe7/aries/messages/src/msg_fields/protocols/cred_issuance/v2/problem_report.rs
aries/messages/src/msg_fields/protocols/cred_issuance/v2/problem_report.rs
use serde::{Deserialize, Serialize}; use typed_builder::TypedBuilder; use crate::{ msg_fields::protocols::report_problem::{ ProblemReport, ProblemReportContent, ProblemReportDecorators, }, msg_parts::MsgParts, }; pub type CredIssuanceProblemReportV2 = MsgParts<CredIssuanceV2ProblemReportConten...
rust
Apache-2.0
2d3034ed73ba8d49e0f72251b4c7cfb859a1efe7
2026-01-04T20:24:59.602734Z
false
openwallet-foundation/vcx
https://github.com/openwallet-foundation/vcx/blob/2d3034ed73ba8d49e0f72251b4c7cfb859a1efe7/aries/messages/src/msg_fields/protocols/cred_issuance/v2/request_credential.rs
aries/messages/src/msg_fields/protocols/cred_issuance/v2/request_credential.rs
use serde::{Deserialize, Serialize}; use typed_builder::TypedBuilder; use crate::{ decorators::{attachment::Attachment, thread::Thread, timing::Timing}, msg_fields::protocols::common::attachment_format_specifier::AttachmentFormatSpecifier, msg_parts::MsgParts, }; pub type RequestCredentialV2 = MsgParts<Re...
rust
Apache-2.0
2d3034ed73ba8d49e0f72251b4c7cfb859a1efe7
2026-01-04T20:24:59.602734Z
false
openwallet-foundation/vcx
https://github.com/openwallet-foundation/vcx/blob/2d3034ed73ba8d49e0f72251b4c7cfb859a1efe7/aries/messages/src/msg_fields/protocols/cred_issuance/v2/ack.rs
aries/messages/src/msg_fields/protocols/cred_issuance/v2/ack.rs
use serde::{Deserialize, Serialize}; use typed_builder::TypedBuilder; use crate::{ msg_fields::protocols::notification::ack::{Ack, AckContent, AckDecorators}, msg_parts::MsgParts, }; pub type AckCredentialV2 = MsgParts<AckCredentialV2Content, AckDecorators>; #[derive(Clone, Debug, Deserialize, Serialize, Par...
rust
Apache-2.0
2d3034ed73ba8d49e0f72251b4c7cfb859a1efe7
2026-01-04T20:24:59.602734Z
false
openwallet-foundation/vcx
https://github.com/openwallet-foundation/vcx/blob/2d3034ed73ba8d49e0f72251b4c7cfb859a1efe7/aries/messages/src/msg_fields/protocols/cred_issuance/v2/issue_credential.rs
aries/messages/src/msg_fields/protocols/cred_issuance/v2/issue_credential.rs
use serde::{Deserialize, Serialize}; use typed_builder::TypedBuilder; use crate::{ decorators::{attachment::Attachment, please_ack::PleaseAck, thread::Thread, timing::Timing}, msg_fields::protocols::common::attachment_format_specifier::AttachmentFormatSpecifier, msg_parts::MsgParts, }; pub type IssueCrede...
rust
Apache-2.0
2d3034ed73ba8d49e0f72251b4c7cfb859a1efe7
2026-01-04T20:24:59.602734Z
false
openwallet-foundation/vcx
https://github.com/openwallet-foundation/vcx/blob/2d3034ed73ba8d49e0f72251b4c7cfb859a1efe7/aries/messages/src/msg_fields/protocols/cred_issuance/v2/offer_credential.rs
aries/messages/src/msg_fields/protocols/cred_issuance/v2/offer_credential.rs
use serde::{Deserialize, Serialize}; use typed_builder::TypedBuilder; use super::CredentialPreviewV2; use crate::{ decorators::{attachment::Attachment, thread::Thread, timing::Timing}, msg_fields::protocols::common::attachment_format_specifier::AttachmentFormatSpecifier, msg_parts::MsgParts, }; pub type O...
rust
Apache-2.0
2d3034ed73ba8d49e0f72251b4c7cfb859a1efe7
2026-01-04T20:24:59.602734Z
false
openwallet-foundation/vcx
https://github.com/openwallet-foundation/vcx/blob/2d3034ed73ba8d49e0f72251b4c7cfb859a1efe7/aries/messages/src/msg_fields/protocols/cred_issuance/v2/mod.rs
aries/messages/src/msg_fields/protocols/cred_issuance/v2/mod.rs
//! Module containing the `issue credential` protocol messages, as defined in the [RFC](<https://github.com/decentralized-identity/aries-rfcs/blob/main/features/0036-issue-credential/README.md>). pub mod ack; pub mod issue_credential; pub mod offer_credential; pub mod problem_report; pub mod propose_credential; pub mo...
rust
Apache-2.0
2d3034ed73ba8d49e0f72251b4c7cfb859a1efe7
2026-01-04T20:24:59.602734Z
false
openwallet-foundation/vcx
https://github.com/openwallet-foundation/vcx/blob/2d3034ed73ba8d49e0f72251b4c7cfb859a1efe7/aries/messages/src/msg_fields/protocols/cred_issuance/v2/propose_credential.rs
aries/messages/src/msg_fields/protocols/cred_issuance/v2/propose_credential.rs
use serde::{Deserialize, Serialize}; use typed_builder::TypedBuilder; use super::CredentialPreviewV2; use crate::{ decorators::{attachment::Attachment, thread::Thread, timing::Timing}, msg_fields::protocols::common::attachment_format_specifier::AttachmentFormatSpecifier, msg_parts::MsgParts, }; pub type P...
rust
Apache-2.0
2d3034ed73ba8d49e0f72251b4c7cfb859a1efe7
2026-01-04T20:24:59.602734Z
false
openwallet-foundation/vcx
https://github.com/openwallet-foundation/vcx/blob/2d3034ed73ba8d49e0f72251b4c7cfb859a1efe7/aries/messages/src/msg_fields/protocols/out_of_band/reuse_accepted.rs
aries/messages/src/msg_fields/protocols/out_of_band/reuse_accepted.rs
use serde::{Deserialize, Serialize}; use shared::misc::serde_ignored::SerdeIgnored; use typed_builder::TypedBuilder; use crate::{ decorators::{thread::Thread, timing::Timing}, msg_parts::MsgParts, }; pub type HandshakeReuseAccepted = MsgParts<HandshakeReuseAcceptedContent, HandshakeReuseAcceptedDecorators...
rust
Apache-2.0
2d3034ed73ba8d49e0f72251b4c7cfb859a1efe7
2026-01-04T20:24:59.602734Z
false
openwallet-foundation/vcx
https://github.com/openwallet-foundation/vcx/blob/2d3034ed73ba8d49e0f72251b4c7cfb859a1efe7/aries/messages/src/msg_fields/protocols/out_of_band/invitation.rs
aries/messages/src/msg_fields/protocols/out_of_band/invitation.rs
use diddoc_legacy::aries::service::AriesService; use serde::{Deserialize, Serialize}; use shared::maybe_known::MaybeKnown; use typed_builder::TypedBuilder; use super::OobGoalCode; use crate::{ decorators::{attachment::Attachment, timing::Timing}, misc::MimeType, msg_parts::MsgParts, msg_types::Protocol...
rust
Apache-2.0
2d3034ed73ba8d49e0f72251b4c7cfb859a1efe7
2026-01-04T20:24:59.602734Z
false